mirror of
https://github.com/thedrewen/protojx-manager.git
synced 2026-05-20 01:43:13 +02:00
8 lines
118 B
Docker
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" ] |