You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Dockerfile.armhf 357B

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