Install docker inside container
Some checks failed
publish / docker (push) Failing after 40s

This commit is contained in:
2025-09-02 22:07:38 -05:00
parent cf049148df
commit ac31b9fbe7

View File

@@ -8,6 +8,7 @@ jobs:
docker: docker:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- run: sh -c 'curl -sSL https://get.docker.com/ | sh'
- -
name: Login to Docker Hub name: Login to Docker Hub
uses: docker/login-action@v3 uses: docker/login-action@v3
@@ -27,6 +28,7 @@ jobs:
with: with:
push: true push: true
build-args: TOOLCHAIN=stable build-args: TOOLCHAIN=stable
file: '{context}/rustup/Dockerfile'
tags: gitea.loadingm.xyz/the10thwiz/rustup:stable,gitea.loadingm.xyz/the10thwiz/rustup:latest tags: gitea.loadingm.xyz/the10thwiz/rustup:stable,gitea.loadingm.xyz/the10thwiz/rustup:latest
- -
name: Build and push name: Build and push
@@ -34,6 +36,7 @@ jobs:
with: with:
push: true push: true
build-args: TOOLCHAIN=beta build-args: TOOLCHAIN=beta
file: '{context}/rustup/Dockerfile'
tags: gitea.loadingm.xyz/the10thwiz/rustup:beta tags: gitea.loadingm.xyz/the10thwiz/rustup:beta
- -
name: Build and push name: Build and push
@@ -41,4 +44,5 @@ jobs:
with: with:
push: true push: true
build-args: TOOLCHAIN=nightly build-args: TOOLCHAIN=nightly
file: '{context}/rustup/Dockerfile'
tags: gitea.loadingm.xyz/the10thwiz/rustup:nightly tags: gitea.loadingm.xyz/the10thwiz/rustup:nightly