Files
MauMau-Client/Dockerfile
2023-03-21 17:21:37 +01:00

10 lines
182 B
Docker

# Create a production build of the app
FROM node:16.9.1 as build
COPY . .
RUN npm install --silent
RUN npm run build
RUN npm install -g serve
EXPOSE 3000
CMD serve -l 3000 -s build