#################################################Dockerfile to build Nginx Installed Containers##Based on CentOS ##################################################Set the base image to CentOSFROM centos#File Autho…
Docker Alpine Dockerfile 安装nginx,最小镜像 FROM alpine MAINTAINER will ## 将alpine-linux:apk的安装源改为国内镜像 RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.ustc.edu.cn/g' /etc/apk/repositories ## 安装需要编译nginx扩展 ## 安装正则表达式pcre模块,nginx正则匹配URL RUN apk add wget gcc g++…