From 8193540f4cf0e1b089b85ab7fcc9343a21f18795 Mon Sep 17 00:00:00 2001 From: awaescher Date: Tue, 14 May 2024 22:26:27 +0200 Subject: [PATCH] Improve Dockerfile --- .gitignore | 3 ++- Dockerfile | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 9073151..37e138d 100644 --- a/.gitignore +++ b/.gitignore @@ -397,4 +397,5 @@ FodyWeavers.xsd # JetBrains Rider *.sln.iml -tools/ \ No newline at end of file +tools/ +MaxPower/out/ \ No newline at end of file diff --git a/Dockerfile b/Dockerfile index 6758067..2aacf93 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,6 +14,7 @@ RUN dotnet restore # copy and build app and libraries WORKDIR / COPY ./MaxPower /app/MaxPower/ +COPY ./MaxTalkSharp /app/MaxTalkSharp/ WORKDIR /app/MaxPower/ RUN dotnet publish -c Release -r linux-arm64 -o out -p:PublishSingleFile=true --self-contained true /p:AssemblyVersion=$SEMVERSION /p:Version=$SEMVERSION