Semaphore/deployment/docker/prod/proxy/Dockerfile
Christian Adamski 69c1d3e429
Quote missing in proxy dockerfile
Ending quote missing on author email-address
2018-04-09 15:16:11 +02:00

12 lines
285 B
Docker

FROM nginx:alpine
LABEL maintainer="Tom Whiston <tom.whiston@gmail.com>"
COPY nginx.conf /etc/nginx/nginx.conf
COPY cert/ /etc/nginx/cert
COPY bin /usr/local/bin
RUN apk add --no-cache openssl && \
/usr/local/bin/install && \
apk del openssl && \
rm -rf /var/cache/apk/*