Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions curl/Dockerfile-QUIC
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG CURL_VERSION=8.13.0
ARG QUICHE_VERSION=0.23.5
ARG QUICHE_VERSION=0.24.2

# Stage 1: Build - Compile and assemble all necessary components and dependencies.
FROM ubuntu:latest AS build
Expand All @@ -25,7 +25,7 @@ RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y && \

# Download and prepare source files needed for the build process.
WORKDIR /root
RUN git clone --branch master --depth 1 https://github.com/open-quantum-safe/boringssl.git bssl \
RUN git clone --branch main --depth 1 https://github.com/open-quantum-safe/boringssl.git bssl \
&& git clone --recursive --depth 1 https://github.com/open-quantum-safe/liboqs.git \
&& git clone --recursive --depth 1 --branch ${QUICHE_VERSION} https://github.com/cloudflare/quiche.git \
&& mkdir -p /root/curl \
Expand Down
6 changes: 3 additions & 3 deletions nginx/Dockerfile-QUIC
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG NGINX_VERSION=1.27.5
ARG NGINX_VERSION=1.28.0

# Stage 1: Build - Compile and assemble all necessary components and dependencies
FROM ubuntu:latest AS build
Expand All @@ -9,13 +9,13 @@ RUN apt-get update && apt-get install --no-install-recommends -y \
g++ make cmake git build-essential \
libpcre3 libpcre3-dev zlib1g-dev \
wget ninja-build libunwind-dev \
pkg-config python3 ca-certificates \
pkg-config python3 ca-certificates \
&& rm -rf /var/lib/apt/lists/*

# Download and prepare source files needed for the build process
WORKDIR /home/build
RUN git clone --branch main --single-branch --depth 1 https://github.com/open-quantum-safe/liboqs.git && \
git clone --branch master --single-branch --depth 1 https://github.com/open-quantum-safe/boringssl.git && \
git clone --branch main --single-branch --depth 1 https://github.com/open-quantum-safe/boringssl.git && \
wget -qO- "https://nginx.org/download/nginx-${NGINX_VERSION}.tar.gz" | tar -xzf -


Expand Down