1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-03-05 15:05:41 +02:00
dockerfiles/nginx/Dockerfile
2016-06-20 22:12:41 +08:00

14 lines
155 B
Docker

#
# Dockerfile for nginx
#
FROM alpine
MAINTAINER kev <noreply@easypi.info>
RUN apk add --no-cache nginx
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]