interop: publish Docker images for linux/amd64 and linux/arm64 (#3748)

This commit is contained in:
Marten Seemann 2023-03-30 14:21:13 +09:00 committed by GitHub
parent 56a6d8d35b
commit c9ae152956
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 13 additions and 3 deletions

View file

@ -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

View file

@ -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}"