Files
HangmanLab.Frontend/Dockerfile
2024-12-03 13:12:44 +00:00

13 lines
143 B
Docker

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