Fix Dockerfile path
All checks were successful
Build and Push Server Docker Image / build-server (push) Successful in 7m55s

This commit is contained in:
2025-09-03 18:17:37 +03:30
parent 53cdd4da8e
commit e7957e7138

View File

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