1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-24 07:48:38 +00:00
dockerfiles/nginx/Dockerfile
2017-05-08 07:05:07 +08:00

16 lines
200 B
Docker

#
# Dockerfile for nginx
#
FROM alpine
MAINTAINER kev <noreply@easypi.pro>
RUN set -xe \
&& apk add --no-cache nginx \
&& mkdir -p /run/nginx
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]