You've already forked dockerfiles
mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-07-01 00:34:55 +02:00
14 lines
171 B
Docker
14 lines
171 B
Docker
![]() |
#
|
||
|
# Dockerfile for nginx-arm
|
||
|
#
|
||
|
|
||
|
FROM easypi/alpine-arm
|
||
|
|
||
|
MAINTAINER EasyPi Software Foundation
|
||
|
|
||
|
RUN apk add --no-cache nginx
|
||
|
|
||
|
EXPOSE 80
|
||
|
|
||
|
CMD ["nginx", "-g", "daemon off;"]
|