Skip to content

Commit

Permalink
Bump the build-docker group across 1 directory with 2 updates
Browse files Browse the repository at this point in the history
Bumps the build-docker group with 2 updates in the /build/ferretdb directory: golang and postgres.


Updates `golang` from 1.23.3 to 1.23.4

Updates `postgres` from 16.4 to 17.2

---
updated-dependencies:
- dependency-name: golang
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: build-docker
- dependency-name: postgres
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: build-docker
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored Dec 4, 2024
1 parent 57000ea commit 9f23ae7
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
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

0 comments on commit 9f23ae7

Please sign in to comment.