mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-24 08:52:15 +02:00
15 lines
210 B
Docker
15 lines
210 B
Docker
#
|
|
# Dockerfile for nginx
|
|
#
|
|
|
|
FROM alpine
|
|
MAINTAINER kev <noreply@datageek.info>
|
|
|
|
RUN apk add -U nginx \
|
|
&& rm -rf /var/cache/apk/*
|
|
|
|
VOLUME /usr/share/nginx/html
|
|
EXPOSE 80
|
|
|
|
CMD ["nginx", "-g", "daemon off;"]
|