From 8b75b39f20f37799a4dfdedd3d94884663c82dcb Mon Sep 17 00:00:00 2001 From: Jan Jansen Date: Fri, 31 Mar 2023 11:14:40 +0200 Subject: [PATCH] add image build --- .github/workflows/build.yaml | 45 ++++++++++++++++++++++++++++++++++++ Dockerfile | 6 +++++ 2 files changed, 51 insertions(+) create mode 100644 .github/workflows/build.yaml diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml new file mode 100644 index 0000000..1142472 --- /dev/null +++ b/.github/workflows/build.yaml @@ -0,0 +1,45 @@ +name: main + +on: + push: + branches: ["main"] + pull_request: + branches: ["main"] + release: + types: + - published + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Prepare + id: prep + run: | + DOCKER_IMAGE=ghcr.io/gdatasoftwareag/fuse-device-plugin + VERSION=edge + if [[ $GITHUB_REF == refs/tags/* ]]; then + VERSION=${GITHUB_REF#refs/tags/} + elif [[ $GITHUB_REF == refs/heads/* ]]; then + VERSION=$(echo ${GITHUB_REF#refs/heads/} | sed -r 's#/+#-#g') + elif [[ $GITHUB_REF == refs/pull/* ]]; then + VERSION=pr-${{ github.event.number }} + fi + TAGS="${DOCKER_IMAGE}:${VERSION},${DOCKER_IMAGE}:${VERSION}-${GITHUB_SHA::8}" + echo ::set-output name=version::${VERSION} + echo ::set-output name=tags::${TAGS} + echo ::set-output name=created::$(date -u +'%Y-%m-%dT%H:%M:%SZ') + - name: Login to Github Registry + uses: docker/login-action@v2 + with: + registry: ghcr.io + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + - name: Push to GitHub Packages + uses: docker/build-push-action@v4 + with: + push: ${{ github.event_name == 'release' }} + tags: ${{ steps.prep.outputs.tags }} + labels: | + org.opencontainers.image.revision=${{ github.sha }} + org.opencontainers.image.created=${{ steps.prep.outputs.created }} diff --git a/Dockerfile b/Dockerfile index eee21b2..7cf98b7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,3 +10,9 @@ COPY --from=builder /code/fuse-device-plugin/fuse-device-plugin /usr/bin/fuse-de # replace with your desire device count CMD ["fuse-device-plugin", "--mounts_allowed", "5000"] + +LABEL org.opencontainers.image.title="Fuse device plugin Docker Image" \ + org.opencontainers.image.description="fuse-device-plugin" \ + org.opencontainers.image.url="https://github.com/GDATASoftwareAG/fuse-device-plugin" \ + org.opencontainers.image.source="https://github.com/GDATASoftwareAG/fuse-device-plugin" \ + org.opencontainers.image.license="Apache 2.0"