nginx-proxy-auto-docker/Dockerfile.rpi
Javi 7f96819648 feat: Add rpi version
Add a dockerfile version for rpi from arm32v7 nginx image
Build forego from source.
2018-01-09 15:31:29 +01:00

44 lines
1.2 KiB
Text

FROM arm32v7/nginx:1.13
LABEL maintainer="Jason Wilder mail@jasonwilder.com"
# Install wget and install/updates certificates
RUN apt-get update \
&& apt-get install -y -q --no-install-recommends \
ca-certificates \
wget \
golang-go \
git \
&& apt-get clean \
&& rm -r /var/lib/apt/lists/*
# Configure Nginx and apply fix for very long server names
RUN echo "daemon off;" >> /etc/nginx/nginx.conf \
&& sed -i 's/worker_processes 1/worker_processes auto/' /etc/nginx/nginx.conf
# Install Forego
RUN export GOPATH="/go" \
&& go get -u github.com/ddollar/forego
ENV PATH=$PATH:/go/bin
# Remove go a git
RUN apt-get purge -yq golang-go git
ENV ARCH_VERSION armhf
ENV DOCKER_GEN_VERSION 0.7.3
RUN wget https://github.com/jwilder/docker-gen/releases/download/$DOCKER_GEN_VERSION/docker-gen-linux-$ARCH_VERSION-$DOCKER_GEN_VERSION.tar.gz \
&& tar -C /usr/local/bin -xvzf docker-gen-linux-$ARCH_VERSION-$DOCKER_GEN_VERSION.tar.gz \
&& rm /docker-gen-linux-$ARCH_VERSION-$DOCKER_GEN_VERSION.tar.gz
COPY network_internal.conf /etc/nginx/
COPY . /app/
WORKDIR /app/
ENV DOCKER_HOST unix:///tmp/docker.sock
VOLUME ["/etc/nginx/certs", "/etc/nginx/dhparam"]
ENTRYPOINT ["/app/docker-entrypoint.sh"]
CMD ["forego", "start", "-r"]