Backend/frontend.Dockerfile

19 lines
329 B
Docker
Raw Normal View History

2021-02-11 22:27:36 -05:00
FROM nginx:mainline-alpine
WORKDIR /usr/bin/cre/
ARG ARTIFACT_NAME=ColorRecipesExplorer-ng
COPY $ARTIFACT_NAME.zip .
COPY frontend.nginx.conf /etc/nginx/nginx.conf
RUN apk update
RUN apk add --no-cache zip
RUN unzip $ARTIFACT_NAME.zip
RUN rm $ARTIFACT_NAME.zip
ARG PORT=4200
EXPOSE $PORT
CMD ["nginx", "-g", "daemon off;"]