-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
29 lines (20 loc) · 920 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
FROM mcr.microsoft.com/dotnet/aspnet:7.0 AS base
WORKDIR /app
EXPOSE 5063
ENV ASPNETCORE_URLS=http://+:5063
# Creates a non-root user with an explicit UID and adds permission to access the /app folder
# For more info, please refer to https://aka.ms/vscode-docker-dotnet-configure-containers
RUN adduser -u 5678 --disabled-password --gecos "" pprof-api && chown -R pprof-api /app
USER pprof-api
FROM mcr.microsoft.com/dotnet/sdk:7.0 AS build
WORKDIR /src
COPY ["DotNet.Monitor.PProf.Api.csproj", "./"]
RUN dotnet restore "DotNet.Monitor.PProf.Api.csproj"
COPY . .
RUN dotnet build "DotNet.Monitor.PProf.Api.csproj" -c Release -o /app/build
FROM build AS publish
RUN dotnet publish "DotNet.Monitor.PProf.Api.csproj" -c Release -o /app/publish /p:UseAppHost=false
FROM base AS final
WORKDIR /app
COPY --from=publish /app/publish .
ENTRYPOINT ["dotnet", "DotNet.Monitor.PProf.Api.dll"]