Move to chiseled dotnet docker image
This commit is contained in:
parent
722a394d03
commit
3b3c1c1e29
15
Dockerfile
15
Dockerfile
@ -1,12 +1,11 @@
|
||||
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build
|
||||
WORKDIR /app
|
||||
FROM mcr.microsoft.com/dotnet/sdk:8.0-jammy AS build
|
||||
WORKDIR /source
|
||||
COPY . .
|
||||
RUN dotnet publish -o /app
|
||||
|
||||
COPY . ./
|
||||
RUN dotnet publish -c Release -o out
|
||||
|
||||
FROM mcr.microsoft.com/dotnet/aspnet:8.0
|
||||
FROM mcr.microsoft.com/dotnet/aspnet:8.0-jammy-chiseled
|
||||
EXPOSE 5000
|
||||
WORKDIR /app
|
||||
COPY --from=build /app/out .
|
||||
COPY --from=build /app .
|
||||
ENV ASPNETCORE_ENVIRONMENT Production
|
||||
ENTRYPOINT [ "dotnet", "RhSolutions.Api.dll", "--urls=http://0.0.0.0:5000" ]
|
||||
ENTRYPOINT ["./RhSolutions.Api", "--urls=http://0.0.0.0:5000"]
|
Loading…
Reference in New Issue
Block a user