buzzword-bingo/Dockerfile

9 lines
83 B
Docker
Raw Permalink Normal View History

2024-02-08 15:22:21 +01:00
FROM node:21.6
COPY . .
RUN npm i
RUN npm run build
CMD ["npm", "run", "start"]