From 3cfd0f106816ade33cc3caa14f496ca5b539309b Mon Sep 17 00:00:00 2001 From: Don Hardman Date: Thu, 5 Mar 2026 10:42:29 +0300 Subject: [PATCH] ci(release): remove docker deployment workflow and dockerfile --- .github/workflows/release.yml | 39 +---------------------------------- Dockerfile-dist | 13 ------------ 2 files changed, 1 insertion(+), 51 deletions(-) delete mode 100644 Dockerfile-dist diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f695b80..1b5540a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -879,43 +879,6 @@ jobs: delimiter: ${{ matrix.delimiter }} target: ${{ env.target }} - deploy-docker: - name: ${{ matrix.name }} - runs-on: ${{ matrix.os }} - needs: - - pack - - deploy - strategy: - matrix: - include: - - name: Deploy docker amd64 - arch: amd64 - os: ubuntu-22.04 - - name: Deploy docker arm64 - arch: arm64 - os: ubuntu-22.04 - steps: - - name: Checkout - uses: actions/checkout@v3 - - name: Set up QEMU - uses: docker/setup-qemu-action@v2 - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v2 - - name: Login to Docker Hub - uses: docker/login-action@v3 - with: - username: ${{ secrets.DOCKER_USER }} - password: ${{ secrets.DOCKER_PASSWORD }} - - name: Build docker image - uses: docker/build-push-action@v3 - with: - context: . - file: ./Dockerfile-dist - platforms: linux/amd64, linux/arm64 - load: false - push: true - tags: ${{ env.DOCKER_TAG }}:${{ needs.pack.outputs.version }} - update-manticoresearch-deps: needs: - pack @@ -927,4 +890,4 @@ jobs: with: name: executor version: "${{ needs.pack.outputs.version_full }}" - token: ${{ secrets.PR_TOKEN }} \ No newline at end of file + token: ${{ secrets.PR_TOKEN }} diff --git a/Dockerfile-dist b/Dockerfile-dist deleted file mode 100644 index d509855..0000000 --- a/Dockerfile-dist +++ /dev/null @@ -1,13 +0,0 @@ -FROM ubuntu:22.04 - -RUN apt-get update -y && \ - apt-get install -y sudo && \ - apt-get clean -y -COPY ./build-linux ./build-linux -COPY ./build-bash-base.sh ./build-bash-base.sh -COPY ./helper.sh ./helper.sh -RUN ./build-linux 8.4.18 0 0 && \ - cp build/dist/bin/php /usr/bin/manticore-executor && \ - rm -fr build - -ENTRYPOINT [ "/usr/bin/manticore-executor" ] \ No newline at end of file