You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Dotnet-WebAPI/ci/API.dockerfile

16 lines
303 B

FROM mcr.microsoft.com/dotnet/sdk:8.0 AS builder
WORKDIR /home/
ADD . .
RUN cd ./API && dotnet publish -c Release
FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS runtime
WORKDIR /home/
COPY --from=builder /home/API/bin/Release/net8.0 /home/
#$PGSQL_DSN is an environment variable
ENTRYPOINT /home/API