Browse Source

fetch https://git.yoqi.me/lyq-docker/docker-nginx to nginx

heavyrain 3 months ago
parent
commit
84eaac7aa7
1 changed files with 4 additions and 0 deletions
  1. 4 0
      nginx/Dockerfile

+ 4 - 0
nginx/Dockerfile

@@ -0,0 +1,4 @@
+FROM alpine:latest
+RUN apk add --no-cache nginx && mkdir -p /run/nginx
+EXPOSE 80 443
+CMD ["nginx", "-g", "daemon off;"]