bourse/api/Dockerfile
2024-12-27 13:55:21 +01:00

6 lines
78 B
Docker

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