odin/Dockerfile
2024-08-19 00:57:38 +02:00

4 lines
63 B
Docker

FROM node:latest
WORKDIR /app
COPY . /app
CMD ["npm", "start"]