Backend/frontend.Dockerfile

19 lines
329 B
Docker

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;"]