mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-03-05 15:05:41 +02:00
14 lines
155 B
Docker
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;"]
|