Frontend/Dockerfile

18 lines
303 B
Docker
Raw Normal View History

2021-02-12 10:58:44 -05:00
FROM nginx:mainline-alpine
WORKDIR /usr/bin/cre/
ARG ARTIFACT_NAME=ColorRecipesExplorer-ng
COPY $ARTIFACT_NAME.zip .
COPY nginx.conf /etc/nginx/nginx.conf
2021-02-12 10:58:44 -05:00
RUN apk update
RUN apk add --no-cache zip
RUN unzip $ARTIFACT_NAME.zip
RUN rm $ARTIFACT_NAME.zip
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]