-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
7 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,14 +5,16 @@ LABEL maintainer="Yury Muski <[email protected]>" | |
ENV NGINX_PATH /etc/nginx | ||
ENV NGINX_VERSION 1.19.6 | ||
|
||
ENV QUICHE_VERSION 0.9.0 | ||
|
||
WORKDIR /opt | ||
|
||
RUN apt-get update && \ | ||
DEBIAN_FRONTEND=noninteractive apt-get install -y libpcre3 libpcre3-dev zlib1g-dev zlib1g golang-go build-essential git curl cmake; | ||
|
||
RUN curl -O https://nginx.org/download/nginx-$NGINX_VERSION.tar.gz && \ | ||
tar xvzf nginx-$NGINX_VERSION.tar.gz && \ | ||
git clone --recursive https://github.com/cloudflare/quiche && \ | ||
git clone --branch $QUICHE_VERSION --recursive https://github.com/cloudflare/quiche && \ | ||
git clone --recursive https://github.com/google/ngx_brotli.git && \ | ||
cd nginx-$NGINX_VERSION && \ | ||
patch -p01 < ../quiche/extras/nginx/nginx-1.16.patch && \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters