bourse/Dockerfile
2024-12-18 09:39:20 +01:00

6 lines
78 B
Docker

FROM node:alpine
WORKDIR /app
COPY . .
RUN npm i
CMD ["npm", "run", "start"]