Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update all non-major dockerfile dependencies #826

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion Dockerfile.apisix
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ RUN wget -q -O hivemind.gz https://github.com/DarthSim/hivemind/releases/downloa
# get daprd
RUN wget -q https://github.com/dapr/dapr/releases/download/v$DAPR_VERSION/daprd_linux_amd64.tar.gz -O - | tar -xzvf - daprd

FROM apache/apisix:3.9.1-debian
FROM apache/apisix:3.11.0-debian
USER root
ENV DAPR_APP_ID=gateway
# DAPR_HTTP_READ_BUFFER_SIZE: default 4KB
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.service
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ RUN mkdir -p migrations

RUN CGO_ENABLED=0 GOOS=linux go build -ldflags="-X main.Version=${VERSION}" -a -o app .

FROM alpine:3.20.2 AS production
FROM alpine:3.20.3 AS production

WORKDIR /app

Expand Down
4 changes: 2 additions & 2 deletions Dockerfile.standalone
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ RUN mkdir -p migrations

RUN CGO_ENABLED=0 GOOS=linux go build -ldflags="-X main.Version=${VERSION}" -a -o app .

FROM debian:12.6 AS deps
FROM debian:12.7 AS deps

# renovate: datasource=github-releases depName=DarthSim/hivemind
ARG HIVEMIND_VERSION=1.1.0
Expand All @@ -63,7 +63,7 @@ RUN wget -q https://github.com/golang-migrate/migrate/releases/download/v$MIGRAT
# get daprd
RUN wget -q https://github.com/dapr/dapr/releases/download/v$DAPR_VERSION/daprd_linux_amd64.tar.gz -O - | tar -xzvf - daprd

FROM alpine:3.20.2 AS production
FROM alpine:3.20.3 AS production

RUN apk update && apk add postgresql-client --no-cache

Expand Down
Loading