nginx镜像制作

基于alpine镜像制作

准备源文件

[root@localhost alpine]# ls
Dockerfile  nginx-1.16.1.tar.gz  repositories

[root@localhost alpine]# cat repositories 
http://mirrors.aliyun.com/alpine/v3.11/main
http://mirrors.aliyun.com/alpine/v3.11/community

dockerfile内容

#dockerfile nginx is image
FROM alpine:3.11
LABEL mail=timerovers@163.com

ENV NGINX_VERSION nginx-1.16.1

COPY repositories /etc/apk/repositories
#安装依赖
RUN apk add --no-cache autoconf gcc  make automake libgcc libc-dev libcurl libc-utils pcre pcre-dev zlib \ 
    zlib-dev openssl openssl-dev libxml2 libxml2-dev libxslt-dev gd-dev perl-dev \
    libnfs libevent libevent-dev iproute2 geoip-dev ca-certificates gnupg linux-headers \
    && apk add -U tzdata && cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime \
        && echo "Asia/shanghai" >> /etc/timezone

#将nginx.tar.gz解压到镜像内
ADD ${NGINX_VERSION}.tar.gz /usr/local/src/

#创建nginx用户
#RUN addgroup -g 2001 -S nginx && adduser -s /sbin/nolongin -S -D -u 2001 -G nginx nginx

#编译安装
RUN cd /usr/local/src/${NGINX_VERSION} \ 
    && ./configure --prefix=/usr/local/nginx  \
    --with-http_ssl_module --with-http_v2_module \
    --with-http_realip_module --with-http_addition_module --with-http_xslt_module \
    --with-http_image_filter_module --with-http_geoip_module --with-http_sub_module \
    --with-http_dav_module --with-http_flv_module --with-http_mp4_module --with-http_gunzip_module \
    --with-http_gzip_static_module --with-http_auth_request_module --with-http_random_index_module \
    --with-http_secure_link_module --with-http_degradation_module --with-http_stub_status_module \
    && make && make install && rm -rf /usr/local/src/${NGINX_VERSION} && rm -rf /var/cache/apk/* \
    && ln -sv /usr/local/nginx/sbin/nginx /usr/bin/ \
        && chown -R nginx:nginx /usr/local/nginx/
EXPOSE 80
EXPOSE 443
WORKDIR /usr/local/nginx/
CMD ["sbin/nginx","-g","daemon off;"]

查看大小

[root@localhost alpine]# docker images
REPOSITORY                                          TAG                 IMAGE ID            CREATED             SIZE
nginx-base                                          1.16.1              699b9fa70217        3 minutes ago       280MB

基于ubuntu镜像制作

准备文件以及apt源

[root@localhost ubuntu]# ls
Dockerfile  nginx-1.16.1.tar.gz  sources.list

[root@localhost ubuntu]# cat sources.list 
deb http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse

deb http://mirrors.aliyun.com/ubuntu/ bionic-security main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-security main restricted universe multiverse

deb http://mirrors.aliyun.com/ubuntu/ bionic-updates main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-updates main restricted universe multiverse

deb http://mirrors.aliyun.com/ubuntu/ bionic-proposed main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-proposed main restricted universe multiverse

deb http://mirrors.aliyun.com/ubuntu/ bionic-backports main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-backports main restricted universe multiverse

dockerfile内容

[root@localhost ubuntu]# cat Dockerfile 
#dockerfile nginx is image
FROM ubuntu:18.04
LABEL mail=timerovers@163.com

ENV NGINX_VERSION nginx-1.16.1

#apt源
COPY sources.list /etc/apt/sources.list

#安装依赖
RUN apt update \
    && apt -y install tzdata \
    && ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime \
    && apt install -y language-pack-zh-hans \
    && apt -y install gcc g++ make unzip bzip2 zlib1g zlib1g-dev \
       libpcre3 libpcre3-dev openssl \
       libssl-dev libgeoip1 libgeoip-dev libgeoip-dev \
       libtool build-essential libgd-dev \
    && apt-get clean

#将nginx.tar.gz解压到镜像内
ADD $NGINX_VERSION.tar.gz /usr/local/src/

#创建nginx用户
RUN groupadd -g 2001 nginx && useradd -s /sbin/nolongin -g nginx -u 2001 nginx

#编译安装
RUN cd /usr/local/src/$NGINX_VERSION \ 
    && ./configure --prefix=/usr/local/nginx  \
        --user=nginx \
            --group=nginx \
            --with-select_module \
            --with-poll_module \
            --with-threads \
            --with-file-aio \
        --with-http_geoip_module \
            --with-http_ssl_module \
            --with-http_v2_module \
            --with-http_realip_module \
        --with-http_addition_module \
        --with-http_image_filter_module \
            --with-http_addition_module \
            --with-http_sub_module \
            --with-http_dav_module \
            --with-http_flv_module \
            --with-http_mp4_module \
            --with-http_gunzip_module \
            --with-http_gzip_static_module \
            --with-http_auth_request_module \
            --with-http_random_index_module \
            --with-http_secure_link_module \
            --with-http_degradation_module \
            --with-http_slice_module \
            --with-http_stub_status_module \
            --with-mail=dynamic \
            --with-mail_ssl_module \
            --with-stream \
            --with-stream_ssl_module \
            --with-stream_realip_module \
            --with-stream_ssl_preread_module \
            --with-compat \
            --with-pcre-jit \
            --with-debug \
    && make && make install && rm -rf /usr/local/src/$NGINX_VERSION \
    && ln -sv /usr/local/nginx/sbin/nginx /usr/bin/ \
    && rm -rf /var/lib/apt/lists/* \
    && rm -rf /var/cache/apk/*
EXPOSE 80
EXPOSE 443
WORKDIR /usr/local/nginx/
CMD ["sbin/nginx","-g","daemon off;"]

查看大小

[root@localhost ~]# docker images
REPOSITORY                                          TAG                 IMAGE ID            CREATED             SIZE
nginx-ubuntu                                        1.16.1              0095df4127e1        7 minutes ago       486MB
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,658评论 6 496
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,482评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 160,213评论 0 350
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,395评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,487评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,523评论 1 293
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,525评论 3 414
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,300评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,753评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,048评论 2 330
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,223评论 1 343
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,905评论 5 338
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,541评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,168评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,417评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,094评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,088评论 2 352

推荐阅读更多精彩内容