From 793c5614f069e7fa021ec90052c40390cf805f22 Mon Sep 17 00:00:00 2001 From: Hironsan Date: Wed, 23 Dec 2020 11:31:47 +0900 Subject: [PATCH 1/4] Add a workflow to tag images properly, fix #783 --- .github/workflows/publish-image.yml | 53 +++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 .github/workflows/publish-image.yml diff --git a/.github/workflows/publish-image.yml b/.github/workflows/publish-image.yml new file mode 100644 index 00000000..08bce09c --- /dev/null +++ b/.github/workflows/publish-image.yml @@ -0,0 +1,53 @@ +name: ci + +on: + schedule: + - cron: '0 10 * * *' # everyday at 10am + push: + branches: + - '**' + tags: + - 'v*.*.*' + pull_request: + +jobs: + docker: + runs-on: ubuntu-latest + steps: + - + name: Checkout + uses: actions/checkout@v2 + - + name: Docker meta + id: docker_meta + uses: crazy-max/ghaction-docker-meta@v1 + with: + images: doccano/doccano + tag-sha: true + tag-semver: | + {{version}} + {{major}}.{{minor}} + - + name: Set up QEMU + uses: docker/setup-qemu-action@v1 + - + name: Set up Docker Buildx + uses: docker/setup-buildx-action@v1 + - + name: Login to DockerHub + if: github.event_name != 'pull_request' + uses: docker/login-action@v1 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + - + name: Build and push + id: docker_build + uses: docker/build-push-action@v2 + with: + context: . + file: ./Dockerfile + platforms: linux/amd64,linux/arm64,linux/386 + push: ${{ github.event_name != 'pull_request' }} + tags: ${{ steps.docker_meta.outputs.tags }} + labels: ${{ steps.docker_meta.outputs.labels }} From f680f1f9d51affccd93a553bdb7fd7625ad5e962 Mon Sep 17 00:00:00 2001 From: Hironsan Date: Wed, 23 Dec 2020 11:52:07 +0900 Subject: [PATCH 2/4] Update Dockerfile to install libssl-dev --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 6ac3c7a3..88e2c9f1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,6 +20,7 @@ RUN apt-get update \ libpq-dev=11.9-0+deb10u1 \ unixodbc-dev=2.3.6-0.1 \ g++=4:8.3.0-1 \ + libssl-dev=1.1.1d-0+deb10u4 \ && apt-get clean COPY /app/requirements.txt / From 4b735860efbe8ebce8f39747302e1406ddd7e02b Mon Sep 17 00:00:00 2001 From: Hironsan Date: Wed, 23 Dec 2020 12:54:30 +0900 Subject: [PATCH 3/4] Update workflow --- .github/workflows/publish-image.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish-image.yml b/.github/workflows/publish-image.yml index 08bce09c..17d83071 100644 --- a/.github/workflows/publish-image.yml +++ b/.github/workflows/publish-image.yml @@ -47,7 +47,7 @@ jobs: with: context: . file: ./Dockerfile - platforms: linux/amd64,linux/arm64,linux/386 + platforms: linux/arm64 #,linux/386 push: ${{ github.event_name != 'pull_request' }} tags: ${{ steps.docker_meta.outputs.tags }} labels: ${{ steps.docker_meta.outputs.labels }} From f4bd8c06aec1e32f29d9419d67fcac2ea207080c Mon Sep 17 00:00:00 2001 From: Hironsan Date: Wed, 23 Dec 2020 14:09:49 +0900 Subject: [PATCH 4/4] Disable multi platform build --- .github/workflows/publish-image.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/publish-image.yml b/.github/workflows/publish-image.yml index 17d83071..677880d1 100644 --- a/.github/workflows/publish-image.yml +++ b/.github/workflows/publish-image.yml @@ -47,7 +47,6 @@ jobs: with: context: . file: ./Dockerfile - platforms: linux/arm64 #,linux/386 push: ${{ github.event_name != 'pull_request' }} tags: ${{ steps.docker_meta.outputs.tags }} labels: ${{ steps.docker_meta.outputs.labels }}