File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 1
1
FROM ubuntu:18.04 AS buildstep
2
2
ENV TERM=xterm container=docker DEBIAN_FRONTEND=noninteractive \
3
3
NGINX_DEVEL_KIT_VERSION=0.3.0 NGINX_SET_MISC_MODULE_VERSION=0.32 \
4
- NGINX_VERSION=1.14.2
4
+ NGINX_VERSION=1.16.0
5
5
ADD ./build/src/ /tmp/
6
6
RUN bash /tmp/ubuntu.sh
7
7
8
8
9
9
FROM ubuntu:18.04
10
10
LABEL maintainer="noogen <friends@niiknow.org>"
11
11
ENV TERM=xterm container=docker DEBIAN_FRONTEND=noninteractive \
12
- NGINX_VERSION=_1.14.2 -1~bionic_amd64.deb \
12
+ NGINX_VERSION=_1.16.0 -1~bionic_amd64.deb \
13
13
NGINX_DEBUG=-dbg${NGINX_VERSION}
14
14
15
15
COPY --from=buildstep /usr/src/nginx/nginx${NGINX_VERSION} /tmp
@@ -29,6 +29,7 @@ RUN cd /tmp \
29
29
&& echo "deb-src http://nginx.org/packages/ubuntu/ bionic nginx" | tee -a /etc/apt/sources.list \
30
30
&& apt-get update -y \
31
31
&& dpkg -i nginx${NGINX_VERSION} \
32
+ && apt-get install --no-install-recommends --no-install-suggests -y nginx-module-njs gettext-base \
32
33
&& rm -rf /etc/nginx/conf.d/default.conf \
33
34
&& mkdir -p /var/log/nginx \
34
35
&& ln -sf /dev/stdout /var/log/nginx/access.log \
You can’t perform that action at this time.
0 commit comments