1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-11-28 09:08:50 +02:00
dockerfiles/nginx/arm/Dockerfile
2016-06-20 22:42:27 +08:00

16 lines
217 B
Docker

#
# Dockerfile for nginx-arm
#
FROM easypi/alpine-arm
MAINTAINER EasyPi Software Foundation
RUN set -xe \
&& apk add --no-cache nginx \
&& mkdir -p /run/nginx
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]