From c94fb2d0578b979adea894189339890c923ecedc Mon Sep 17 00:00:00 2001 From: Elia el Lazkani Date: Sun, 31 Mar 2024 00:21:29 +0100 Subject: [PATCH] chore(): Migrates to the custom built container image - Clean up of unnecessary steps --- .forgejo/workflows/build-container.yml | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/.forgejo/workflows/build-container.yml b/.forgejo/workflows/build-container.yml index 8559206..a70a3d3 100644 --- a/.forgejo/workflows/build-container.yml +++ b/.forgejo/workflows/build-container.yml @@ -9,15 +9,8 @@ jobs: docker: runs-on: pi container: - image: python:3.12.2-slim-bookworm + image: scm.project42.io/elia/docker-actions-container:latest steps: - - name: Install dependencies - id: dependencies - run: | - apt-get update > /dev/null - apt-get install -y -qq nodejs curl git > /dev/null - curl -sSL https://get.docker.com/ | sh - - name: Checkout uses: actions/checkout@v4