Skip to content

Commit 0d75901

Browse files
committed
lint: fix FromAsCasing
Signed-off-by: David Karlsson <[email protected]>
1 parent 2932a6f commit 0d75901

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

worker/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# to build for a different platform than your host, use --platform=<platform>
77
# for example, if you were on Intel (amd64) and wanted to build for ARM, you would use:
88
# docker buildx build --platform "linux/arm64/v8" .
9-
FROM --platform=${BUILDPLATFORM} mcr.microsoft.com/dotnet/sdk:7.0 as build
9+
FROM --platform=${BUILDPLATFORM} mcr.microsoft.com/dotnet/sdk:7.0 AS build
1010
ARG TARGETPLATFORM
1111
ARG TARGETARCH
1212
ARG BUILDPLATFORM
@@ -23,4 +23,4 @@ RUN dotnet publish -c release -o /app -a $TARGETARCH --self-contained false --no
2323
FROM mcr.microsoft.com/dotnet/runtime:7.0
2424
WORKDIR /app
2525
COPY --from=build /app .
26-
ENTRYPOINT ["dotnet", "Worker.dll"]
26+
ENTRYPOINT ["dotnet", "Worker.dll"]

0 commit comments

Comments
 (0)