diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index 0522f6d..acfa722 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -46,7 +46,7 @@ jobs: # multi-platform images and export cache # https://github.com/docker/setup-buildx-action - name: Set up Docker Buildx - uses: docker/setup-buildx-action@f95db51fddba0c2d1ec667646a06c2ce06100226 # v3.0.0 + uses: docker/setup-buildx-action@v3 # Login against a Docker registry # https://github.com/docker/login-action @@ -88,8 +88,8 @@ jobs: platforms: linux/amd64,linux/arm64 tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.event.inputs.vTag }} labels: ${{ steps.meta.outputs.labels }} - cache-from: type=gha - cache-to: type=gha,mode=max + # cache-from: type=gha + # cache-to: type=gha,mode=max # Sign the resulting Docker image digest except on PRs. # This will only write to the public Rekor transparency log when the Docker diff --git a/Dockerfile b/Dockerfile index b70d3de..d6085ed 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,14 +23,14 @@ COPY ui /ui RUN npm run build -FROM debian:bullseye AS cli-stage +FROM debian:bookworm AS cli-stage ARG TARGETARCH COPY cli-${TARGETARCH}.sh . RUN apt-get update && apt-get install -y curl bzip2 && \ chmod +x cli-${TARGETARCH}.sh RUN ./cli-${TARGETARCH}.sh -FROM debian:bullseye-slim +FROM debian:bookworm-slim LABEL org.opencontainers.image.title="SQL container manager" \ org.opencontainers.image.description="Create, connect, and manage SQL dev containers" \ org.opencontainers.image.vendor="DrewSK.Tech" \