diff --git a/src/Dockerfile b/src/Dockerfile index 9267e15..b1987e5 100644 --- a/src/Dockerfile +++ b/src/Dockerfile @@ -1,5 +1,6 @@ ARG VERSION=1.0.0.0 FROM mcr.microsoft.com/dotnet/sdk:5.0-alpine AS build +ARG VERSION WORKDIR /app # copy csproj and restore as distinct layers diff --git a/src/Dockerfile.arm32 b/src/Dockerfile.arm32 index a01eab0..fac0384 100644 --- a/src/Dockerfile.arm32 +++ b/src/Dockerfile.arm32 @@ -1,5 +1,6 @@ ARG VERSION=1.0.0.0 FROM mcr.microsoft.com/dotnet/sdk:5.0-alpine AS build +ARG VERSION WORKDIR /app # copy csproj and restore as distinct layers diff --git a/src/Dockerfile.arm64 b/src/Dockerfile.arm64 index 86e2221..51042bf 100644 --- a/src/Dockerfile.arm64 +++ b/src/Dockerfile.arm64 @@ -1,5 +1,6 @@ ARG VERSION=1.0.0.0 FROM mcr.microsoft.com/dotnet/sdk:5.0-alpine AS build +ARG VERSION WORKDIR /app # copy csproj and restore as distinct layers