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
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
FROM arm32v7/alpine:3.17 as msquic
FROM library/alpine:3.17 AS msquic
ARG TARGETARCH

# build MsQuic as we don't have packages
RUN apk add --upgrade --no-cache \
Expand All @@ -18,20 +19,19 @@ RUN git clone --depth 1 --single-branch --branch v2.3.6 --recursive https://gith

WORKDIR /tmp/msquic

RUN cmake -B build/linux/arm_Release_openssl3 \
-DQUIC_OUTPUT_DIR=/tmp/msquic/artifacts/bin/linux/arm_Release_openssl3 \
RUN cmake -B build/linux/Release_openssl3 \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_TARGET_ARCHITECTURE=arm \
-DCMAKE_TARGET_ARCHITECTURE=${TARGETARCH} \
-DQUIC_TLS=openssl3 \
-DQUIC_ENABLE_LOGGING=true \
-DQUIC_USE_SYSTEM_LIBCRYPTO=true \
-DQUIC_BUILD_TOOLS=off \
-DQUIC_BUILD_TEST=off \
-DQUIC_BUILD_PERF=off && \
cmake --build build/linux/arm_Release_openssl3 --config Release && \
cmake --install build/linux/arm_Release_openssl3 --prefix /msquic
cmake --build build/linux/Release_openssl3 --config Release && \
cmake --install build/linux/Release_openssl3 --prefix /msquic

FROM arm32v7/alpine:3.17 as venv
FROM library/alpine:3.17 AS venv

RUN apk add --upgrade --no-cache \
libffi-dev \
Expand All @@ -50,7 +50,7 @@ RUN python3 -m venv /venv && \
pip download --no-deps helix-scripts --index-url https://dnceng.pkgs.visualstudio.com/public/_packaging/helix-client-prod/pypi/simple && \
pip install ./helix_scripts-*-py3-none-any.whl

FROM arm32v7/alpine:3.17
FROM library/alpine:3.17

# Install .NET and test dependencies
RUN apk add --upgrade --no-cache \
Expand Down
90 changes: 0 additions & 90 deletions src/alpine/3.17/helix/arm64v8/Dockerfile

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
FROM amd64/alpine:3.17 AS msquic
FROM library/alpine:3.18 AS msquic
ARG TARGETARCH

# build MsQuic as we don't have packages
RUN apk add --upgrade --no-cache \
Expand All @@ -18,19 +19,19 @@ RUN git clone --depth 1 --single-branch --branch v2.3.6 --recursive https://gith

WORKDIR /tmp/msquic

RUN cmake -B build/linux/x64_Release_openssl3 \
-DQUIC_OUTPUT_DIR=/tmp/msquic/artifacts/bin/linux/x64_Release_openssl3 \
RUN cmake -B build/linux/Release_openssl3 \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_TARGET_ARCHITECTURE=${TARGETARCH} \
-DQUIC_TLS=openssl3 \
-DQUIC_ENABLE_LOGGING=true \
-DQUIC_USE_SYSTEM_LIBCRYPTO=true \
-DQUIC_BUILD_TOOLS=off \
-DQUIC_BUILD_TEST=off \
-DQUIC_BUILD_PERF=off && \
cmake --build build/linux/x64_Release_openssl3 --config Release && \
cmake --install build/linux/x64_Release_openssl3 --prefix /msquic
cmake --build build/linux/Release_openssl3 --config Release && \
cmake --install build/linux/Release_openssl3 --prefix /msquic

FROM amd64/alpine:3.17 AS venv
FROM library/alpine:3.18 AS venv

RUN apk add --upgrade --no-cache \
cargo \
Expand All @@ -44,7 +45,7 @@ RUN python3 -m venv /venv && \
pip download --no-deps helix-scripts --index-url https://dnceng.pkgs.visualstudio.com/public/_packaging/helix-client-prod/pypi/simple && \
pip install ./helix_scripts-*-py3-none-any.whl

FROM amd64/alpine:3.17
FROM library/alpine:3.18

# Install .NET and test dependencies
RUN apk add --upgrade --no-cache \
Expand Down
90 changes: 0 additions & 90 deletions src/alpine/3.18/helix/amd64/Dockerfile

This file was deleted.

90 changes: 0 additions & 90 deletions src/alpine/3.18/helix/arm32v7/Dockerfile

This file was deleted.

Loading