diff options
| -rw-r--r-- | .github/workflows/release.yml | 11 | ||||
| -rw-r--r-- | Dockerfile | 2 |
2 files changed, 9 insertions, 4 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1ab6081f..e57e88d3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -37,21 +37,26 @@ jobs: steps: - name: Check out the repo uses: actions/checkout@v3 + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 - name: Login to DockerHub - uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a + uses: docker/login-action@v3 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_PASSWORD }} - name: Extract metadata (tags, labels) for Docker id: meta - uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7 + uses: docker/metadata-action@v5 with: images: seccerts/sec-certs - name: Build and push id: docker_build - uses: docker/build-push-action@3b5e8027fcad23fda98b2e3ac259d8d67585f671 + uses: docker/build-push-action@v5 with: context: . + platforms: linux/amd64,linux/arm64 file: Dockerfile push: true tags: ${{ steps.meta.outputs.tags }} @@ -56,7 +56,7 @@ ENV PATH="${VENV_PATH}/bin:$PATH" # Install dependencies, notebook is because of mybinder.org RUN \ pip3 install -U pip wheel pip-tools && \ - pip-sync requirements/all_requirements.txt && \ + pip-sync requirements/requirements.txt && \ pip3 install --no-cache notebook jupyterlab && \ pip3 install -e . && \ python3 -m spacy download en_core_web_sm |
