1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-25 16:28:40 +00:00
dockerfiles/nginx/Dockerfile

16 lines
201 B
Docker
Raw Normal View History

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