Add source label to Dockerfile

Signed-off-by: Ske <voltasalt@gmail.com>
This commit is contained in:
Ske 2021-06-09 12:55:38 +02:00
parent 9f9aa46214
commit b09a34d9cd

View File

@ -16,6 +16,8 @@ RUN dotnet build -c Release -o bin
# Build runtime stage (doesn't include SDK) # Build runtime stage (doesn't include SDK)
FROM mcr.microsoft.com/dotnet/aspnet:5.0 FROM mcr.microsoft.com/dotnet/aspnet:5.0
LABEL org.opencontainers.image.source = "https://github.com/xSke/PluralKit"
WORKDIR /app WORKDIR /app
COPY --from=build /app ./ COPY --from=build /app ./