Files
protojx-manager/Dockerfile
2025-11-28 14:13:42 +01:00

13 lines
169 B
Docker

FROM node:22
WORKDIR /app
COPY . .
RUN apt-get update && apt-get install -y iputils-ping
RUN npm clean-install
# RUN npm run register
CMD [ "npm", "run", "start" ]