Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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" \
Expand Down
Loading