diff options
author | Serghei Cebotari <serghei@cebotari.ru> | 2024-01-14 23:12:20 +0300 |
---|---|---|
committer | Serghei Cebotari <serghei@cebotari.ru> | 2024-01-14 23:12:20 +0300 |
commit | 46cde9fda5e2c1f7b01d05e9a8b270f026cb6742 (patch) | |
tree | 7b9440824bb75c30385e26de6fd0c29f393fa6eb /Dockerfile | |
parent | 27dd2af627553ee782a7f3524a91fc1e40292a51 (diff) |
Fix warning NETSDK1194
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,7 +1,7 @@ FROM mcr.microsoft.com/dotnet/sdk:8.0-jammy AS build WORKDIR /source COPY . . -RUN dotnet publish -o /app +RUN dotnet publish --property:OutputPath=/app FROM mcr.microsoft.com/dotnet/aspnet:8.0-jammy-chiseled EXPOSE 5000 |