Files
docker-deluge-openvpn/proxy/Dockerfile.armhf
Bharat 680a00f33d Use same rpi-raspbian image for proxy
Use the same resin/rpi-raspbian:stretch image for proxy to not have to download another image and save space.
2018-02-28 10:08:51 +05:30

18 lines
357 B
Docker

FROM resin/rpi-raspbian:stretch
RUN apt-get update \
&& apt-get install -y \
ca-certificates \
nginx \
&& rm -rf /var/lib/apt/lists/*
RUN ln -sf /dev/stdout /var/log/nginx/access.log \
&& ln -sf /dev/stderr /var/log/nginx/error.log
EXPOSE 8080
COPY nginx.conf /etc/nginx/nginx.conf
CMD ["nginx", "-g", "daemon off;"]