mirror of https://github.com/ivanch/tcc.git
20 lines
358 B
Docker
20 lines
358 B
Docker
FROM mcr.microsoft.com/dotnet/sdk:6.0-alpine AS build-env
|
|
WORKDIR /App
|
|
|
|
# Copy everything
|
|
COPY * .
|
|
|
|
# Restore as distinct layers
|
|
RUN dotnet restore
|
|
|
|
# Build a release
|
|
RUN dotnet build -c Release -o out
|
|
|
|
# Build runtime image
|
|
FROM mcr.microsoft.com/dotnet/aspnet:6.0-alpine
|
|
|
|
WORKDIR /App
|
|
|
|
COPY --from=build-env /App/out .
|
|
|
|
ENTRYPOINT ["dotnet", "TCC.APP.dll"] |