1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-14 11:23:34 +02:00
dockerfiles/nginx/Dockerfile

15 lines
210 B
Docker
Raw Normal View History

2015-07-01 13:57:52 +02:00
#
# Dockerfile for nginx
#
FROM alpine
MAINTAINER kev <noreply@datageek.info>
RUN apk add -U nginx \
&& rm -rf /var/cache/apk/*
VOLUME /usr/share/nginx/html
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]