Fix Dockerfile

This commit is contained in:
2025-04-01 16:30:46 +03:30
parent e98514d675
commit d87337fa73

View File

@@ -8,7 +8,7 @@ RUN apk update \
WORKDIR /source
COPY . .
RUN cd 'HoolIt' && dotnet publish -r linux-musl-x64 -o /app 'HoolIt.csproj'
RUN dotnet publish -r linux-musl-x64 -o /app 'HoolIt.csproj'
FROM mcr.microsoft.com/dotnet/runtime-deps:10.0.0-preview.2-alpine3.21
WORKDIR /app