forked from Alexey/DAS_2024_1
14 lines
342 B
Docker
14 lines
342 B
Docker
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build
|
|
WORKDIR /App
|
|
|
|
# Copy everything
|
|
COPY . ./
|
|
# Restore as distinct layers
|
|
RUN dotnet restore
|
|
# Build and publish a release
|
|
RUN dotnet publish -c Release -o out
|
|
|
|
FROM mcr.microsoft.com/dotnet/runtime:8.0 AS runtime
|
|
WORKDIR /App
|
|
COPY --from=build /App/out .
|
|
ENTRYPOINT ["dotnet", "ApiRestaurant.dll"] |