aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
blob: 49d938df2ab0588cd232109c9e49813a176fdb49 (plain)
1
2
3
4
5
6
7
8
9
FROM crupest/timeline-build-env:latest AS build
WORKDIR /timeline-app
COPY . .
RUN dotnet publish Timeline/Timeline.csproj --configuration Release --output ./Timeline/publish/ -r linux-x64 --self-contained false

FROM mcr.microsoft.com/dotnet/core/aspnet:3.1
WORKDIR /app
COPY --from=build /timeline-app/Timeline/publish .
ENTRYPOINT ["dotnet", "Timeline.dll"]