nginx/Dockerfile

12 lines
339 B
Docker
Raw Normal View History

2016-04-20 17:40:22 +00:00
FROM alpine:3.3
MAINTAINER Andrey Arapov <andrey.arapov@nixaid.com>
RUN echo '@testing http://dl-cdn.alpinelinux.org/alpine/edge/testing' >> /etc/apk/repositories && \
apk update && \
apk add nginx-naxsi@testing inotify-tools && \
mkdir /tmp/nginx
COPY nginx.conf /etc/nginx/nginx.conf
COPY launch /launch
ENTRYPOINT /launch