* Initial ARM support.

Based on https://github.com/leleobhz/rpi-nginx-proxy and https://github.com/lroguet/rpi-nginx-proxy
This commit is contained in:
Leonardo Amaral 2019-04-06 17:19:46 -03:00
parent 8c590fc68f
commit ecd1817a95

38
Dockerfile.arm Normal file
View file

@ -0,0 +1,38 @@
FROM nginx:mainline-alpine
LABEL authors="Ludovic Roguet <code@fourteenislands.io>"
LABEL maintainer="Leonardo Amaral <docker@leonardoamaral.com.br>"
# Install wget and install/updates certificates
RUN apk add --no-cache --virtual .run-deps \
ca-certificates bash wget openssl \
&& update-ca-certificates
# 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 wget https://bin.equinox.io/c/ekMN3bCZFUn/forego-stable-linux-arm.tgz \
&& tar -C /usr/local/bin -xvzf forego-stable-linux-arm.tgz \
&& chmod a+x /usr/local/bin/forego \
&& rm /forego-stable-linux-arm.tgz
ENV DOCKER_GEN_VERSION 0.7.4
# Install docker-gen
RUN wget https://github.com/jwilder/docker-gen/releases/download/$DOCKER_GEN_VERSION/docker-gen-linux-armhf-$DOCKER_GEN_VERSION.tar.gz \
&& tar -C /usr/local/bin -xvzf docker-gen-linux-armhf-$DOCKER_GEN_VERSION.tar.gz \
&& rm /docker-gen-linux-armhf-$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"]