We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2932a6f commit 0d75901Copy full SHA for 0d75901
worker/Dockerfile
@@ -6,7 +6,7 @@
6
# to build for a different platform than your host, use --platform=<platform>
7
# for example, if you were on Intel (amd64) and wanted to build for ARM, you would use:
8
# docker buildx build --platform "linux/arm64/v8" .
9
-FROM --platform=${BUILDPLATFORM} mcr.microsoft.com/dotnet/sdk:7.0 as build
+FROM --platform=${BUILDPLATFORM} mcr.microsoft.com/dotnet/sdk:7.0 AS build
10
ARG TARGETPLATFORM
11
ARG TARGETARCH
12
ARG BUILDPLATFORM
@@ -23,4 +23,4 @@ RUN dotnet publish -c release -o /app -a $TARGETARCH --self-contained false --no
23
FROM mcr.microsoft.com/dotnet/runtime:7.0
24
WORKDIR /app
25
COPY --from=build /app .
26
-ENTRYPOINT ["dotnet", "Worker.dll"]
+ENTRYPOINT ["dotnet", "Worker.dll"]
0 commit comments