Bachelorthesis_Code/frontend/Dockerfile.prod
cami f4e501458e
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
bugfixing..
2021-07-12 22:59:34 +02:00

16 lines
318 B
Docker

FROM node:latest as builder
WORKDIR /app
ENV PATH /app/node_modules/.bin:$PATH
COPY package.json ./
COPY package-lock.json ./
RUN npm ci --silent --force
RUN npm audit fix
COPY . ./
RUN npm run build
FROM nginx:latest
COPY --from=builder /app/build /usr/share/nginx/html
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]