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

16 lines
201 B
Docker
Raw Normal View History

2015-07-01 13:57:52 +02:00
#
# Dockerfile for nginx
#
FROM alpine
2016-06-20 16:12:41 +02:00
MAINTAINER kev <noreply@easypi.info>
2015-07-01 13:57:52 +02:00
2016-06-20 16:42:27 +02:00
RUN set -xe \
&& apk add --no-cache nginx \
&& mkdir -p /run/nginx
2016-02-24 05:23:49 +02:00
2015-07-01 13:57:52 +02:00
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]