mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-24 08:52:15 +02:00
16 lines
200 B
Docker
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;"]
|