Files
jarri-spooty/Dockerfile
T
2024-06-22 21:30:53 +02:00

15 lines
145 B
Docker

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