fixed LICENSE missing in published container image

This commit is contained in:
Mia Rose Winter 2024-03-18 12:36:52 +01:00
parent 9831bbd5bf
commit 54fae07a58
Signed by: miawinter
GPG key ID: 4B6F6A83178F595E
2 changed files with 1 additions and 1 deletions

View file

@ -21,7 +21,6 @@
**/obj
**/secrets.dev.yaml
**/values.dev.yaml
LICENSE
README.md
!**/.gitignore
!.git/HEAD

View file

@ -38,4 +38,5 @@ RUN dotnet publish "./Wave.csproj" \
FROM base AS final
WORKDIR /app
COPY --from=publish /app/publish .
COPY LICENSE .
ENTRYPOINT ["dotnet", "Wave.dll"]