From ac31b9fbe7057cdaf62cb695902e40655b5ad306 Mon Sep 17 00:00:00 2001 From: Matthew Pomes Date: Tue, 2 Sep 2025 22:07:38 -0500 Subject: [PATCH] Install docker inside container --- .gitea/workflows/publish.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitea/workflows/publish.yaml b/.gitea/workflows/publish.yaml index bc78968..188a01a 100644 --- a/.gitea/workflows/publish.yaml +++ b/.gitea/workflows/publish.yaml @@ -8,6 +8,7 @@ jobs: docker: runs-on: ubuntu-latest steps: + - run: sh -c 'curl -sSL https://get.docker.com/ | sh' - name: Login to Docker Hub uses: docker/login-action@v3 @@ -27,6 +28,7 @@ jobs: with: push: true build-args: TOOLCHAIN=stable + file: '{context}/rustup/Dockerfile' tags: gitea.loadingm.xyz/the10thwiz/rustup:stable,gitea.loadingm.xyz/the10thwiz/rustup:latest - name: Build and push @@ -34,6 +36,7 @@ jobs: with: push: true build-args: TOOLCHAIN=beta + file: '{context}/rustup/Dockerfile' tags: gitea.loadingm.xyz/the10thwiz/rustup:beta - name: Build and push @@ -41,4 +44,5 @@ jobs: with: push: true build-args: TOOLCHAIN=nightly + file: '{context}/rustup/Dockerfile' tags: gitea.loadingm.xyz/the10thwiz/rustup:nightly