diff --git a/.forgejo/workflows/production.yaml b/.forgejo/workflows/production.yaml index ce5962a8..073e6e10 100644 --- a/.forgejo/workflows/production.yaml +++ b/.forgejo/workflows/production.yaml @@ -98,11 +98,14 @@ jobs: echo "tag=${TAG}" >> $GITHUB_OUTPUT echo "Full image tag: ${TAG}" + - name: Install Docker CLI + run: | + apt-get update && apt-get install -y docker.io + - name: Build and push Docker image run: | IMAGE_TAG="${{ steps.tag.outputs.tag }}" - # Build using existing Docker daemon (runner user is in docker group) docker build \ --build-arg MIX_ENV=prod \ --file k8s/Dockerfile \