Files
protojx-manager/Dockerfile
2025-10-28 18:36:47 +01:00

8 lines
118 B
Docker

FROM node:22
COPY . .
RUN apt-get update && apt-get install -y iputils-ping
RUN npm i
CMD [ "npm", "run", "start" ]