nginx/Dockerfile

13 lines
240 B
Docker
Raw Normal View History

2016-05-20 13:29:15 +00:00
FROM nginx
2016-04-20 17:40:22 +00:00
MAINTAINER Andrey Arapov <andrey.arapov@nixaid.com>
2016-05-20 13:29:15 +00:00
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update && \
apt-get -y install inotify-tools
2016-04-20 17:40:22 +00:00
COPY nginx.conf /etc/nginx/nginx.conf
COPY launch /launch
2016-05-20 13:29:15 +00:00
2016-04-20 17:40:22 +00:00
ENTRYPOINT /launch