nginx-proxy-auto-docker/Dockerfile
Li Chuangbo 809b83a73f Add alpine image
Alpine linux is a tiny linux distribution which ideal for building
docker images.

for more commit details, this commit:

- Build from nginx:alpine (nginx:alpine does not have versions)
- Add full nginx.conf as nginx:alpine has a different nginx.conf then debian
- Download forego in Dockerfile for better building caching
- Change badge version ;-)
2016-04-06 01:28:47 +12:00

30 lines
943 B
Docker

FROM nginx:alpine
MAINTAINER Jason Wilder mail@jasonwilder.com
# Install wget and install/updates certificates
RUN apk add --no-cache --virtual .run-deps \
ca-certificates \
bash
# Configure Nginx and apply fix for very long server names
COPY nginx.conf /etc/nginx/
RUN mkdir /etc/nginx/conf.d
# Install Forego
RUN wget https://github.com/jwilder/forego/releases/download/v0.16.1/forego -O /usr/local/bin/forego \
&& chmod u+x /usr/local/bin/forego
ENV DOCKER_GEN_VERSION 0.7.0
RUN wget https://github.com/jwilder/docker-gen/releases/download/$DOCKER_GEN_VERSION/docker-gen-linux-amd64-$DOCKER_GEN_VERSION.tar.gz \
&& tar -C /usr/local/bin -xvzf docker-gen-linux-amd64-$DOCKER_GEN_VERSION.tar.gz \
&& rm /docker-gen-linux-amd64-$DOCKER_GEN_VERSION.tar.gz
COPY . /app/
WORKDIR /app/
ENV DOCKER_HOST unix:///tmp/docker.sock
VOLUME ["/etc/nginx/certs"]
ENTRYPOINT ["/app/docker-entrypoint.sh"]
CMD ["forego", "start", "-r"]