Skip to content

Commit

Permalink
correct images names and labels
Browse files Browse the repository at this point in the history
  • Loading branch information
gicastel committed Sep 20, 2022
1 parent f58c042 commit 3cb5ff8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
- uses: mr-smithers-excellent/docker-build-push@v5
name: Build & push Docker standalone image
with:
image: quest
image: qest
tags: standalone-latest, standalone-${{ github.ref_name }}
registry: ghcr.io
dockerfile: standalone.dockerfile
Expand All @@ -59,7 +59,7 @@ jobs:
- uses: mr-smithers-excellent/docker-build-push@v5
name: Build & push Docker bundle image
with:
image: quest
image: qest
tags: bundle-latest, bundle-${{ github.ref_name }}
registry: ghcr.io
dockerfile: bundle.dockerfile
Expand Down
2 changes: 2 additions & 0 deletions bundle.dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
FROM mcr.microsoft.com/dotnet/sdk:6.0 as build

LABEL org.opencontainers.image.source=https://github.com/geims83/qest

COPY ./src ./src
RUN dotnet publish /src/qest/ -o /output --runtime linux-x64 -c Release --self-contained true /p:PublishSingleFile=true /p:PublishTrimmed=true

Expand Down
2 changes: 2 additions & 0 deletions standalone.dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
FROM mcr.microsoft.com/dotnet/sdk:6.0-alpine as build

LABEL org.opencontainers.image.source=https://github.com/geims83/qest

COPY ./src ./src

RUN dotnet restore /src -r linux-musl-x64
Expand Down

0 comments on commit 3cb5ff8

Please sign in to comment.