From f3ec35c8028599a5a06b385788357e0dc6f75c5e Mon Sep 17 00:00:00 2001 From: Gervasio Marchand Date: Mon, 19 Dec 2022 13:00:16 -0800 Subject: [PATCH] Build the dlls on a matching container (#7) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 59eedaa..6d04760 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # syntax=docker/dockerfile:1 ARG ARCH= -FROM mcr.microsoft.com/dotnet/sdk:6.0.404-alpine3.16 AS builder +FROM mcr.microsoft.com/dotnet/sdk:6.0.404-alpine3.16-${ARCH} AS builder WORKDIR /src COPY src /src/ RUN dotnet publish -c Release /src/FakeRelay.sln -o /app