Files
MauMau-Client/Dockerfile
DTieman 355dabf439
All checks were successful
Build Mau & Deploy Mau / build (push) Successful in 1m39s
Build Mau & Deploy Mau / deploy (push) Successful in 4m6s
Update Dockerfile
2024-05-27 20:47:30 +00:00

13 lines
212 B
Docker

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