-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
25 lines (21 loc) · 1.02 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 5.0 SDK (this includes the runtime)
FROM mcr.microsoft.com/dotnet/sdk:6.0 as build-env
# Copy everything and publish the release (publish implicitly restores and builds)
COPY . ./
RUN dotnet publish ./Breaker.Action/Breaker.Action.csproj -c Release -o out --no-self-contained
# Label the container
LABEL maintainer="Daniel Zauner <[email protected]>"
LABEL repository="repo-url"
LABEL homepage="homepage-url"
# Label as GitHub action
LABEL com.github.actions.name="Breaker Action"
# Limit to 160 characters
LABEL com.github.actions.description="Checks an ASP .NET Core Web API for breaking changes and reports an error for each one found."
# See branding:
# https://docs.github.com/actions/creating-actions/metadata-syntax-for-github-actions#branding
LABEL com.github.actions.icon="activity"
LABEL com.github.actions.color="orange"
# Relayer the .NET SDK, anew with the build output
FROM mcr.microsoft.com/dotnet/sdk:6.0
COPY --from=build-env /out .
ENTRYPOINT [ "dotnet", "/Breaker.Action.dll" ]