mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
interop: publish Docker images for linux/amd64 and linux/arm64 (#3748)
This commit is contained in:
parent
56a6d8d35b
commit
c9ae152956
2 changed files with 13 additions and 3 deletions
3
.github/workflows/build-interop-docker.yml
vendored
3
.github/workflows/build-interop-docker.yml
vendored
|
@ -12,6 +12,8 @@ jobs:
|
|||
uses: docker/setup-qemu-action@v2
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v2
|
||||
with:
|
||||
platforms: linux/amd64,linux/arm64
|
||||
- name: Login to Docker Hub
|
||||
uses: docker/login-action@v2
|
||||
with:
|
||||
|
@ -20,5 +22,6 @@ jobs:
|
|||
- uses: docker/build-push-action@v4
|
||||
with:
|
||||
context: "{{defaultContext}}:interop"
|
||||
platforms: linux/amd64,linux/arm64
|
||||
push: true
|
||||
tags: martenseemann/quic-go-interop:latest
|
||||
|
|
|
@ -1,10 +1,17 @@
|
|||
FROM martenseemann/quic-network-simulator-endpoint:latest AS builder
|
||||
|
||||
ARG TARGETPLATFORM
|
||||
RUN echo "TARGETPLATFORM: ${TARGETPLATFORM}"
|
||||
|
||||
RUN apt-get update && apt-get install -y wget tar git
|
||||
|
||||
RUN wget https://dl.google.com/go/go1.20.linux-amd64.tar.gz && \
|
||||
tar xfz go1.20.linux-amd64.tar.gz && \
|
||||
rm go1.20.linux-amd64.tar.gz
|
||||
ENV GOVERSION=1.20.2
|
||||
|
||||
RUN platform=$(echo ${TARGETPLATFORM} | tr '/' '-') && \
|
||||
filename="go${GOVERSION}.${platform}.tar.gz" && \
|
||||
wget https://dl.google.com/go/${filename} && \
|
||||
tar xfz ${filename} && \
|
||||
rm ${filename}
|
||||
|
||||
ENV PATH="/go/bin:${PATH}"
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue