cear-audiolab/Dockerfile
2023-10-31 03:54:59 +01:00

24 lines
459 B
Docker

FROM node:16-alpine as angular
WORKDIR app
COPY inc ./
RUN npm install -g @angular/cli
RUN ng config -g cli.warnings.versionMismatch false
RUN npm install
RUN ng build
# nginx base image
FROM nginx:1.16.0-alpine
RUN chmod 777 /var/cache/nginx /var/run
# copy static contents of project to nginx html
RUN rm -rf /usr/share/nginx/html/*
COPY --from=angular /app/dist/cear-rio/browser /usr/share/nginx/html
EXPOSE 8080
CMD ["nginx", "-g", "daemon off;"]