From 7c56105a449a8598ecd0b984ad4d94f910ee0ae8 Mon Sep 17 00:00:00 2001 From: NZSmartie Date: Sat, 17 Feb 2018 19:48:53 +1300 Subject: [PATCH] Add support for ARM builds (e.g. Raspberry Pi) --- Dockerfile.arm | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 Dockerfile.arm diff --git a/Dockerfile.arm b/Dockerfile.arm new file mode 100644 index 0000000..0e3ed51 --- /dev/null +++ b/Dockerfile.arm @@ -0,0 +1,40 @@ +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 \ + && 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 + +ENV DOCKER_PLATFORM arm + +# Install Forego +RUN wget -q -O - https://bin.equinox.io/c/ekMN3bCZFUn/forego-stable-linux-$DOCKER_PLATFORM.tgz \ + | tar -C /usr/local/bin -xvz \ + && chmod u+x /usr/local/bin/forego + +ENV DOCKER_GEN_VERSION 0.7.3 +ENV DOCKER_PLATFORM armel + +RUN wget -q -O - https://github.com/jwilder/docker-gen/releases/download/$DOCKER_GEN_VERSION/docker-gen-linux-$DOCKER_PLATFORM-$DOCKER_GEN_VERSION.tar.gz \ + | tar -C /usr/local/bin -xvz + +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"]