From fec6a09b9043c67be433f5afe9fce6f7101c1fc1 Mon Sep 17 00:00:00 2001 From: David Thorpe Date: Sun, 26 May 2024 14:18:23 +0200 Subject: [PATCH 1/2] Added a workflow comment --- .github/workflows/container.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/container.yaml b/.github/workflows/container.yaml index e2e7fee..4ba80e2 100644 --- a/.github/workflows/container.yaml +++ b/.github/workflows/container.yaml @@ -72,7 +72,7 @@ jobs: matrix: include: - tag: ${{ needs.var.outputs.tag }} - - tag: latest + - tag: latest # TODO: Skip this if the event calling is not publishing a release runs-on: ubuntu-latest steps: - name: Login From edfd4c9b7ae86a90c7f8d2d24486810ed3f95709 Mon Sep 17 00:00:00 2001 From: David Thorpe Date: Sun, 26 May 2024 14:27:07 +0200 Subject: [PATCH 2/2] Updated dockerfile --- etc/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/etc/Dockerfile b/etc/Dockerfile index 1af3faa..38b1c34 100644 --- a/etc/Dockerfile +++ b/etc/Dockerfile @@ -19,6 +19,9 @@ COPY --from=builder /usr/src/app/build/* /usr/local/bin/ COPY etc/entrypoint.sh . RUN chmod +x entrypoint.sh +# Install the api commands +RUN api install + # Labels LABEL org.opencontainers.image.source=${SOURCE}