Skip to content

Commit

Permalink
chore(Dockerfile): update Dockerfile to support multiple architectures
Browse files Browse the repository at this point in the history
Signed-off-by: kahirokunn <[email protected]>
  • Loading branch information
kahirokunn committed Jun 6, 2023
1 parent 49b0497 commit 6e1e6fd
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions images/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,28 +1,31 @@
FROM mcr.microsoft.com/dotnet/runtime-deps:6.0 as build
FROM --platform=$TARGETPLATFORM mcr.microsoft.com/dotnet/runtime-deps:6.0 as build

ARG TARGETPLATFORM
ARG RUNNER_VERSION
ARG RUNNER_ARCH="x64"
ARG RUNNER_ARCH=
ARG RUNNER_CONTAINER_HOOKS_VERSION=0.3.1
ARG DOCKER_VERSION=20.10.23

RUN apt update -y && apt install curl unzip -y

WORKDIR /actions-runner
RUN curl -f -L -o runner.tar.gz https://github.com/actions/runner/releases/download/v${RUNNER_VERSION}/actions-runner-linux-${RUNNER_ARCH}-${RUNNER_VERSION}.tar.gz \
RUN RUNNER_ARCH=${RUNNER_ARCH:-$(case "$TARGETPLATFORM" in "linux/arm64") echo "arm64" ;; *) echo "x64" ;; esac)} \
&& curl -f -L -o runner.tar.gz https://github.com/actions/runner/releases/download/v${RUNNER_VERSION}/actions-runner-linux-${RUNNER_ARCH}-${RUNNER_VERSION}.tar.gz \
&& tar xzf ./runner.tar.gz \
&& rm runner.tar.gz

RUN curl -f -L -o runner-container-hooks.zip https://github.com/actions/runner-container-hooks/releases/download/v${RUNNER_CONTAINER_HOOKS_VERSION}/actions-runner-hooks-k8s-${RUNNER_CONTAINER_HOOKS_VERSION}.zip \
&& unzip ./runner-container-hooks.zip -d ./k8s \
&& rm runner-container-hooks.zip

RUN export DOCKER_ARCH=x86_64 \
RUN RUNNER_ARCH=${RUNNER_ARCH:-$(case "$TARGETPLATFORM" in "linux/arm64") echo "arm64" ;; *) echo "x64" ;; esac)} \
&& export DOCKER_ARCH=x86_64 \
&& if [ "$RUNNER_ARCH" = "arm64" ]; then export DOCKER_ARCH=aarch64 ; fi \
&& curl -fLo docker.tgz https://download.docker.com/linux/static/stable/${DOCKER_ARCH}/docker-${DOCKER_VERSION}.tgz \
&& tar zxvf docker.tgz \
&& rm -rf docker.tgz

FROM mcr.microsoft.com/dotnet/runtime-deps:6.0
FROM --platform=$TARGETPLATFORM mcr.microsoft.com/dotnet/runtime-deps:6.0

ENV DEBIAN_FRONTEND=noninteractive
ENV RUNNER_MANUALLY_TRAP_SIG=1
Expand Down

0 comments on commit 6e1e6fd

Please sign in to comment.