|
@@ -40,7 +40,8 @@ jobs:
|
|
|
id: info
|
|
|
run: |
|
|
|
VERSION=noop
|
|
|
- DOCKERFILE=Dockerfile
|
|
|
+ DOCKERFILE_SLIM=Dockerfile
|
|
|
+ DOCKERFILE=Dockerfile.full
|
|
|
MINOR=""
|
|
|
MAJOR=""
|
|
|
if [ "${{ github.event_name }}" = "schedule" ]; then
|
|
@@ -59,27 +60,40 @@ jobs:
|
|
|
MINOR=${VERSION%.*}
|
|
|
MAJOR=${MINOR%.*}
|
|
|
fi
|
|
|
+ VERSION_SLIM="${VERSION}-slim"
|
|
|
if [[ $DOCKER_PKG == alpine ]]; then
|
|
|
VERSION="${VERSION}-alpine"
|
|
|
- DOCKERFILE=Dockerfile.alpine
|
|
|
+ VERSION_SLIM="${VERSION}-slim"
|
|
|
+ DOCKERFILE_SLIM=Dockerfile.alpine
|
|
|
+ DOCKERFILE=Dockerfile.full.alpine
|
|
|
fi
|
|
|
TAGS="${DOCKER_IMAGE}:${VERSION}"
|
|
|
+ TAGS_SLIM="${DOCKER_IMAGE}:${VERSION_SLIM}"
|
|
|
+ BASE_IMAGE="${TAGS_SLIM}"
|
|
|
if [[ $GITHUB_REF == refs/tags/* ]]; then
|
|
|
if [[ $DOCKER_PKG == debian ]]; then
|
|
|
if [[ -n $MAJOR && -n $MINOR ]]; then
|
|
|
TAGS="$TAGS,${DOCKER_IMAGE}:${MINOR},${DOCKER_IMAGE}:${MAJOR}"
|
|
|
+ TAGS_SLIM="$TAGS_SLIM,${DOCKER_IMAGE}:${MINOR}-slim,${DOCKER_IMAGE}:${MAJOR}-slim"
|
|
|
fi
|
|
|
TAGS="$TAGS,${DOCKER_IMAGE}:latest"
|
|
|
+ TAGS_SLIM="$TAGS_SLIM,${DOCKER_IMAGE}:slim"
|
|
|
else
|
|
|
if [[ -n $MAJOR && -n $MINOR ]]; then
|
|
|
TAGS="$TAGS,${DOCKER_IMAGE}:${MINOR}-alpine,${DOCKER_IMAGE}:${MAJOR}-alpine"
|
|
|
+ TAGS_SLIM="$TAGS_SLIM,${DOCKER_IMAGE}:${MINOR}-alpine-slim,${DOCKER_IMAGE}:${MAJOR}-alpine-slim"
|
|
|
fi
|
|
|
TAGS="$TAGS,${DOCKER_IMAGE}:alpine"
|
|
|
+ TAGS_SLIM="$TAGS_SLIM,${DOCKER_IMAGE}:alpine-slim"
|
|
|
fi
|
|
|
fi
|
|
|
echo ::set-output name=dockerfile::${DOCKERFILE}
|
|
|
+ echo ::set-output name=dockerfile-slim::${DOCKERFILE_SLIM}
|
|
|
echo ::set-output name=version::${VERSION}
|
|
|
+ echo ::set-output name=version-slim::${VERSION_SLIM}
|
|
|
echo ::set-output name=tags::${TAGS}
|
|
|
+ echo ::set-output name=tags-slim::${TAGS_SLIM}
|
|
|
+ echo ::set-output name=base-image::${BASE_IMAGE}
|
|
|
echo ::set-output name=created::$(date -u +'%Y-%m-%dT%H:%M:%SZ')
|
|
|
echo ::set-output name=sha::${GITHUB_SHA::8}
|
|
|
env:
|
|
@@ -89,8 +103,11 @@ jobs:
|
|
|
- name: Set up QEMU
|
|
|
uses: docker/setup-qemu-action@v1
|
|
|
|
|
|
- - name: Set up Docker Buildx
|
|
|
- uses: docker/setup-buildx-action@v1
|
|
|
+ - uses: docker/setup-buildx-action@v1
|
|
|
+ id: builder-slim
|
|
|
+
|
|
|
+ - uses: docker/setup-buildx-action@v1
|
|
|
+ id: builder-full
|
|
|
|
|
|
- name: Login to Docker Hub
|
|
|
uses: docker/login-action@v1
|
|
@@ -107,21 +124,44 @@ jobs:
|
|
|
password: ${{ secrets.CR_PAT }}
|
|
|
if: ${{ github.event_name != 'pull_request' && matrix.docker_image == 'ghcr.io/drakkan/sftpgo' }}
|
|
|
|
|
|
- - name: Build and push
|
|
|
+ - name: Build and push slim
|
|
|
+ uses: docker/build-push-action@v2
|
|
|
+ with:
|
|
|
+ builder: ${{ steps.builder-slim.outputs.name }}
|
|
|
+ file: ./${{ steps.info.outputs.dockerfile-slim }}
|
|
|
+ platforms: linux/amd64,linux/arm64,linux/ppc64le
|
|
|
+ push: ${{ github.event_name != 'pull_request' }}
|
|
|
+ tags: ${{ steps.info.outputs.tags-slim }}
|
|
|
+ build-args: |
|
|
|
+ COMMIT_SHA=${{ steps.info.outputs.sha }}
|
|
|
+ labels: |
|
|
|
+ org.opencontainers.image.title=SFTPGo
|
|
|
+ org.opencontainers.image.description=Fully featured and highly configurable SFTP server with optional FTP/S and WebDAV support
|
|
|
+ org.opencontainers.image.url=${{ fromJson(steps.repo.outputs.result).html_url }}
|
|
|
+ org.opencontainers.image.documentation=${{ fromJson(steps.repo.outputs.result).html_url }}/blob/${{ github.sha }}/docker/README.md
|
|
|
+ org.opencontainers.image.source=${{ fromJson(steps.repo.outputs.result).html_url }}
|
|
|
+ org.opencontainers.image.version=${{ steps.info.outputs.version }}
|
|
|
+ org.opencontainers.image.created=${{ steps.info.outputs.created }}
|
|
|
+ org.opencontainers.image.revision=${{ github.sha }}
|
|
|
+ org.opencontainers.image.licenses=${{ fromJson(steps.repo.outputs.result).license.spdx_id }}
|
|
|
+
|
|
|
+ - name: Build and push full
|
|
|
uses: docker/build-push-action@v2
|
|
|
with:
|
|
|
+ builder: ${{ steps.builder-full.outputs.name }}
|
|
|
file: ./${{ steps.info.outputs.dockerfile }}
|
|
|
platforms: linux/amd64,linux/arm64,linux/ppc64le
|
|
|
push: ${{ github.event_name != 'pull_request' }}
|
|
|
tags: ${{ steps.info.outputs.tags }}
|
|
|
build-args: |
|
|
|
COMMIT_SHA=${{ steps.info.outputs.sha }}
|
|
|
+ BASE_IMAGE=${{ steps.info.outputs.base-image }}
|
|
|
labels: |
|
|
|
org.opencontainers.image.title=SFTPGo
|
|
|
org.opencontainers.image.description=Fully featured and highly configurable SFTP server with optional FTP/S and WebDAV support
|
|
|
org.opencontainers.image.url=${{ fromJson(steps.repo.outputs.result).html_url }}
|
|
|
org.opencontainers.image.documentation=${{ fromJson(steps.repo.outputs.result).html_url }}/blob/${{ github.sha }}/docker/README.md
|
|
|
- org.opencontainers.image.source=${{ fromJson(steps.repo.outputs.result).clone_url }}
|
|
|
+ org.opencontainers.image.source=${{ fromJson(steps.repo.outputs.result).html_url }}
|
|
|
org.opencontainers.image.version=${{ steps.info.outputs.version }}
|
|
|
org.opencontainers.image.created=${{ steps.info.outputs.created }}
|
|
|
org.opencontainers.image.revision=${{ github.sha }}
|