Files
MauMau-Client/Dockerfile
DTieman 69c6cc34d6
All checks were successful
Build Mau & Deploy Mau / build (push) Successful in 2m15s
Build Mau & Deploy Mau / deploy (push) Successful in 6m32s
Update Dockerfile
2024-04-15 20:19:23 +00:00

11 lines
183 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