diff --git a/Dockerfile.armhf b/Dockerfile.armhf new file mode 100644 index 0000000..976ad31 --- /dev/null +++ b/Dockerfile.armhf @@ -0,0 +1,40 @@ +FROM nginx:1.14 +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.4 +ENV DOCKER_PLATFORM armhf + +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"]