1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-01-28 05:36:33 +02:00
dockerfiles/nginx/arm/Dockerfile

16 lines
217 B
Docker
Raw Normal View History

2016-06-20 22:12:41 +08:00
#
# Dockerfile for nginx-arm
#
FROM easypi/alpine-arm
MAINTAINER EasyPi Software Foundation
2016-06-20 22:42:27 +08:00
RUN set -xe \
&& apk add --no-cache nginx \
&& mkdir -p /run/nginx
2016-06-20 22:12:41 +08:00
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]