Files
MauMau-Client/Dockerfile
Jordan Geurtsen f9ac888da8 fixed docker
2023-03-22 10:07:15 +01:00

11 lines
209 B
Docker

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