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

Bump the build-docker group across 1 directory with 2 updates #4648

Closed
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 build/ferretdb/all-in-one.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ ARG LABEL_COMMIT

# prepare stage

FROM --platform=$BUILDPLATFORM golang:1.23.3 AS all-in-one-prepare
FROM --platform=$BUILDPLATFORM golang:1.23.4 AS all-in-one-prepare

# use a single directory for all Go caches to simpliy RUN --mount commands below
ENV GOPATH=/cache/gopath
Expand All @@ -38,7 +38,7 @@ EOF

# build stage

FROM golang:1.23.3 AS all-in-one-build
FROM golang:1.23.4 AS all-in-one-build

ARG TARGETARCH

Expand Down Expand Up @@ -100,7 +100,7 @@ EOF

# final stage

FROM postgres:16.4 AS all-in-one
FROM postgres:17.2 AS all-in-one

COPY --from=all-in-one-build /src/bin/ferretdb /ferretdb

Expand Down
6 changes: 3 additions & 3 deletions build/ferretdb/development.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ ARG LABEL_COMMIT

# prepare stage

FROM --platform=$BUILDPLATFORM golang:1.23.3 AS development-prepare
FROM --platform=$BUILDPLATFORM golang:1.23.4 AS development-prepare

# use a single directory for all Go caches to simpliy RUN --mount commands below
ENV GOPATH=/cache/gopath
Expand All @@ -36,7 +36,7 @@ EOF

# build stage

FROM golang:1.23.3 AS development-build
FROM golang:1.23.4 AS development-build

ARG TARGETARCH
ARG TARGETVARIANT
Expand Down Expand Up @@ -107,7 +107,7 @@ COPY --from=development-build /src/bin/ferretdb /ferretdb

# final stage

FROM golang:1.23.3 AS development
FROM golang:1.23.4 AS development

ENV GOCOVERDIR=/tmp/cover
ENV GORACE=halt_on_error=1,history_size=2
Expand Down
4 changes: 2 additions & 2 deletions build/ferretdb/production.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ ARG LABEL_COMMIT

# prepare stage

FROM --platform=$BUILDPLATFORM golang:1.23.3 AS production-prepare
FROM --platform=$BUILDPLATFORM golang:1.23.4 AS production-prepare

# use a single directory for all Go caches to simpliy RUN --mount commands below
ENV GOPATH=/cache/gopath
Expand All @@ -36,7 +36,7 @@ EOF

# build stage

FROM golang:1.23.3 AS production-build
FROM golang:1.23.4 AS production-build

ARG TARGETARCH
ARG TARGETVARIANT
Expand Down