forked from Gamer025/RequestReviewFromUser
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDockerfile
25 lines (21 loc) · 1.08 KB
/
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
# Set the base image as the .NET 8.0 SDK (this includes the runtime)
FROM mcr.microsoft.com/dotnet/sdk:8.0 as build-env
# Copy everything and publish the release (publish implicitly restores and builds)
COPY . ./
RUN dotnet publish ./RequestReviewFromUser/RequestReviewFromUser.csproj -c Release -o out --no-self-contained
# Label the container
LABEL maintainer="Gamer025 <[email protected]>"
LABEL repository="https://github.com/Gamer025/RequestReviewFromUser"
LABEL homepage="https://github.com/Gamer025/RequestReviewFromUser"
# Label as GitHub action
LABEL com.github.actions.name="RequestReviewFromUser"
# Limit to 160 characters
LABEL com.github.actions.description="Github action for assigning users to PRs/issues."
# See branding:
# https://docs.github.com/actions/creating-actions/metadata-syntax-for-github-actions#branding
LABEL com.github.actions.icon="user"
LABEL com.github.actions.color="white"
# Relayer the .NET SDK, anew with the build output
FROM mcr.microsoft.com/dotnet/runtime:8.0
COPY --from=build-env /out .
ENTRYPOINT ["dotnet", "/RequestReviewFromUser.dll"]