Files
jarri-spooty/Dockerfile
T
2024-07-13 23:12:20 +02:00

13 lines
122 B
Docker

FROM node:18
WORKDIR /usr/src/app
COPY . .
RUN npm install
RUN npm run build
EXPOSE 3000
CMD ["npm", "run", "start"]