From b288888d7adb1b3ebe266c1b5c7b41ff7b239966 Mon Sep 17 00:00:00 2001 From: Mikhail Kuznetsov Date: Tue, 26 Aug 2025 14:20:01 +1000 Subject: [PATCH] =?UTF-8?q?fix(templateTaskGenerator):=20=D0=B4=D0=BE?= =?UTF-8?q?=D0=B1=D0=B0=D0=B2=D0=BB=D0=B5=D0=BD=20=D0=B0=D1=80=D0=B3=D1=83?= =?UTF-8?q?=D0=BC=D0=B5=D0=BD=D1=82=20app=5Fversion?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- PARR.TemplateTaskGeneratorWorker/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/PARR.TemplateTaskGeneratorWorker/Dockerfile b/PARR.TemplateTaskGeneratorWorker/Dockerfile index bf89691f..7c54a6c4 100644 --- a/PARR.TemplateTaskGeneratorWorker/Dockerfile +++ b/PARR.TemplateTaskGeneratorWorker/Dockerfile @@ -24,6 +24,7 @@ RUN dotnet build "./PARR.TemplateTaskGeneratorWorker.csproj" -c $BUILD_CONFIGURA # This stage is used to publish the service project to be copied to the final stage FROM build AS publish ARG BUILD_CONFIGURATION=Release +ARG app_version=0.0.0-default RUN dotnet publish "./PARR.TemplateTaskGeneratorWorker.csproj" -c $BUILD_CONFIGURATION -o /app/publish /p:UseAppHost=false /p:Version=$app_version # This stage is used in production or when running from VS in regular mode (Default when not using the Debug configuration)