Skip to content

Commit ea4c93a

Browse files
Bump nginx from 1.29.0 to 1.29.1 (#18)
* Bump nginx from 1.29.0 to 1.29.1 Bumps nginx from 1.29.0 to 1.29.1. --- updated-dependencies: - dependency-name: nginx dependency-version: 1.29.1 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> * Bump nginx from 1.29.0 to 1.29.1 --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Tomasz Gajewski <[email protected]>
1 parent 44fae0c commit ea4c93a

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/docker-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ jobs:
2626
context: .
2727
platforms: linux/amd64,linux/arm64
2828
push: true
29-
tags: kiweeteam/nginx-brotli:1.29.0,kiweeteam/nginx-brotli:latest
29+
tags: kiweeteam/nginx-brotli:1.29.1,kiweeteam/nginx-brotli:latest

Dockerfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ RUN apt update \
55
&& apt install -y libpcre3 libpcre3-dev zlib1g zlib1g-dev openssl libssl-dev wget git gcc make libbrotli-dev
66

77
WORKDIR /app
8-
RUN wget https://nginx.org/download/nginx-1.29.0.tar.gz && tar -zxf nginx-1.29.0.tar.gz
8+
RUN wget https://nginx.org/download/nginx-1.29.1.tar.gz && tar -zxf nginx-1.29.1.tar.gz
99
RUN git clone --recurse-submodules -j8 https://github.com/google/ngx_brotli
10-
RUN cd nginx-1.29.0 && ./configure --with-compat --add-dynamic-module=../ngx_brotli \
10+
RUN cd nginx-1.29.1 && ./configure --with-compat --add-dynamic-module=../ngx_brotli \
1111
&& make modules
1212

13-
FROM nginx:1.29.0
14-
COPY --from=builder /app/nginx-1.29.0/objs/ngx_http_brotli_static_module.so /etc/nginx/modules/
15-
COPY --from=builder /app/nginx-1.29.0/objs/ngx_http_brotli_filter_module.so /etc/nginx/modules/
13+
FROM nginx:1.29.1
14+
COPY --from=builder /app/nginx-1.29.1/objs/ngx_http_brotli_static_module.so /etc/nginx/modules/
15+
COPY --from=builder /app/nginx-1.29.1/objs/ngx_http_brotli_filter_module.so /etc/nginx/modules/
1616
RUN echo "load_module modules/ngx_http_brotli_filter_module.so;\nload_module modules/ngx_http_brotli_static_module.so;\n$(cat /etc/nginx/nginx.conf)" > /etc/nginx/nginx.conf
1717
RUN echo 'brotli on;\n \
1818
brotli_comp_level 6;\n \

0 commit comments

Comments
 (0)