mirror of
https://github.com/thedrewen/protojx-manager.git
synced 2026-03-21 01:48:54 +01:00
12 lines
150 B
Docker
12 lines
150 B
Docker
FROM node:22
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
|
|
RUN apt-get update && apt-get install -y iputils-ping
|
|
RUN npm i
|
|
|
|
RUN npm register
|
|
|
|
CMD [ "npm", "run", "start" ] |