From 9ca37fe239094227faeb0bb768e7faa9ea2e74b2 Mon Sep 17 00:00:00 2001 From: Andrey Arapov Date: Tue, 3 May 2016 09:21:45 +0200 Subject: [PATCH] using nginx from edge repo now --- Dockerfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2c20a24..6bb927b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,11 @@ FROM alpine:3.3 MAINTAINER Andrey Arapov -RUN echo '@testing http://dl-cdn.alpinelinux.org/alpine/edge/testing' >> /etc/apk/repositories && \ +RUN echo '@edge http://dl-cdn.alpinelinux.org/alpine/edge/main' >> /etc/apk/repositories && \ apk update && \ - apk add nginx-naxsi@testing inotify-tools && \ - mkdir /tmp/nginx + apk add nginx@edge inotify-tools ca-certificates && \ + mkdir /tmp/nginx && \ + chown nginx /var/lib/nginx /var/lib/nginx/tmp COPY nginx.conf /etc/nginx/nginx.conf COPY launch /launch