Create Dockerfile.armhf

This commit is contained in:
Stefomat 2018-10-06 20:55:25 +02:00 committed by GitHub
parent a42be87c7f
commit 55d3593bcb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

40
Dockerfile.armhf Normal file
View file

@ -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"]