1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 11:58:47 +00:00
dockerfiles/nginx/Dockerfile

16 lines
200 B
Docker
Raw Normal View History

2015-07-01 11:57:52 +00:00
#
# Dockerfile for nginx
#
FROM alpine
2017-05-07 23:05:07 +00:00
MAINTAINER kev <noreply@easypi.pro>
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;"]