mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-14 11:23:34 +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;"]
|