Skip to content

Commit

Permalink
add image build
Browse files Browse the repository at this point in the history
  • Loading branch information
farodin91 committed Mar 31, 2023
1 parent 9e625fa commit 8b75b39
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 0 deletions.
45 changes: 45 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -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 }}
6 changes: 6 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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"

0 comments on commit 8b75b39

Please sign in to comment.