Files
protojx-manager/Dockerfile

12 lines
156 B
Docker

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