Skip to content

Commit 8fc89b0

Browse files
build(deps): bump the docker-production-dependencies group across 19 directories with 14 updates
Bumps the docker-production-dependencies group with 2 updates in the /src/accounting directory: dotnet/sdk and dotnet/aspnet. Bumps the docker-production-dependencies group with 2 updates in the /src/cart/src directory: dotnet/sdk and dotnet/runtime-deps. Bumps the docker-production-dependencies group with 1 update in the /src/checkoutservice directory: golang. Bumps the docker-production-dependencies group with 1 update in the /src/checkoutservice/genproto directory: golang. Bumps the docker-production-dependencies group with 1 update in the /src/currency directory: alpine. Bumps the docker-production-dependencies group with 1 update in the /src/email directory: ruby. Bumps the docker-production-dependencies group with 1 update in the /src/flagd-ui directory: node. Bumps the docker-production-dependencies group with 1 update in the /src/frontend directory: node. Bumps the docker-production-dependencies group with 1 update in the /src/image-provider directory: nginx. Bumps the docker-production-dependencies group with 1 update in the /src/kafka directory: apache/kafka. Bumps the docker-production-dependencies group with 1 update in the /src/load-generator directory: python. Bumps the docker-production-dependencies group with 1 update in the /src/payment directory: node. Bumps the docker-production-dependencies group with 1 update in the /src/productcatalogservice directory: golang. Bumps the docker-production-dependencies group with 1 update in the /src/productcatalogservice/genproto directory: golang. Bumps the docker-production-dependencies group with 2 updates in the /src/quote directory: php and composer. Bumps the docker-production-dependencies group with 1 update in the /src/react-native-app directory: reactnativecommunity/react-native-android. Bumps the docker-production-dependencies group with 1 update in the /src/recommendation directory: python. Bumps the docker-production-dependencies group with 1 update in the /src/recommendation/genproto directory: python. Bumps the docker-production-dependencies group with 1 update in the /src/shipping directory: rust. Updates `dotnet/sdk` from 8.0 to 9.0 Updates `dotnet/aspnet` from 8.0 to 9.0 Updates `dotnet/sdk` from 8.0 to 9.0 Updates `dotnet/runtime-deps` from 8.0-alpine3.20 to 9.0-alpine3.20 Updates `golang` from 1.22-alpine to 1.23-alpine Updates `golang` from 1.22-alpine to 1.23-alpine Updates `alpine` from 3.18 to 3.21 Updates `ruby` from 3.2.2-slim to 3.4.1-slim Updates `node` from 20-alpine to 23-alpine Updates `node` from 20-alpine to 23-alpine Updates `nginx` from 1.27.0-otel to 1.27.3-otel Updates `apache/kafka` from 3.7.0 to 3.9.0 Updates `python` from 3.12-slim-bookworm to 3.13-slim-bookworm Updates `node` from 22-alpine to 23-alpine Updates `golang` from 1.22-alpine to 1.23-alpine Updates `golang` from 1.22-alpine to 1.23-alpine Updates `php` from 8.3-cli to 8.4-cli Updates `composer` from 2.7 to 2.8 Updates `reactnativecommunity/react-native-android` from v13.2.1 to v15.0 Updates `python` from 3.12-slim-bookworm to 3.13-slim-bookworm Updates `python` from 3.12-slim-bookworm to 3.13-slim-bookworm Updates `rust` from 1.76 to 1.83 --- updated-dependencies: - dependency-name: dotnet/sdk dependency-type: direct:production update-type: version-update:semver-major dependency-group: docker-production-dependencies - dependency-name: dotnet/aspnet dependency-type: direct:production update-type: version-update:semver-major dependency-group: docker-production-dependencies - dependency-name: dotnet/sdk dependency-type: direct:production update-type: version-update:semver-major dependency-group: docker-production-dependencies - dependency-name: dotnet/runtime-deps dependency-type: direct:production dependency-group: docker-production-dependencies - dependency-name: golang dependency-type: direct:production dependency-group: docker-production-dependencies - dependency-name: golang dependency-type: direct:production dependency-group: docker-production-dependencies - dependency-name: alpine dependency-type: direct:production update-type: version-update:semver-minor dependency-group: docker-production-dependencies - dependency-name: ruby dependency-type: direct:production update-type: version-update:semver-minor dependency-group: docker-production-dependencies - dependency-name: node dependency-type: direct:production dependency-group: docker-production-dependencies - dependency-name: node dependency-type: direct:production dependency-group: docker-production-dependencies - dependency-name: nginx dependency-type: direct:production update-type: version-update:semver-patch dependency-group: docker-production-dependencies - dependency-name: apache/kafka dependency-type: direct:production update-type: version-update:semver-minor dependency-group: docker-production-dependencies - dependency-name: python dependency-type: direct:production dependency-group: docker-production-dependencies - dependency-name: node dependency-type: direct:production dependency-group: docker-production-dependencies - dependency-name: golang dependency-type: direct:production dependency-group: docker-production-dependencies - dependency-name: golang dependency-type: direct:production dependency-group: docker-production-dependencies - dependency-name: php dependency-type: direct:production dependency-group: docker-production-dependencies - dependency-name: composer dependency-type: direct:production update-type: version-update:semver-minor dependency-group: docker-production-dependencies - dependency-name: reactnativecommunity/react-native-android dependency-type: direct:production dependency-group: docker-production-dependencies - dependency-name: python dependency-type: direct:production dependency-group: docker-production-dependencies - dependency-name: python dependency-type: direct:production dependency-group: docker-production-dependencies - dependency-name: rust dependency-type: direct:production update-type: version-update:semver-minor dependency-group: docker-production-dependencies ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 43c5175 commit 8fc89b0

File tree

19 files changed

+27
-27
lines changed

19 files changed

+27
-27
lines changed

src/accounting/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright The OpenTelemetry Authors
22
# SPDX-License-Identifier: Apache-2.0
33

4-
FROM --platform=${BUILDPLATFORM} mcr.microsoft.com/dotnet/sdk:8.0 AS builder
4+
FROM --platform=${BUILDPLATFORM} mcr.microsoft.com/dotnet/sdk:9.0 AS builder
55
ARG TARGETARCH
66
ARG BUILD_CONFIGURATION=Release
77
WORKDIR /src
@@ -21,7 +21,7 @@ RUN dotnet publish "./Accounting.csproj" -r linux-$TARGETARCH -c $BUILD_CONFIGUR
2121

2222
# -----------------------------------------------------------------------------
2323

24-
FROM mcr.microsoft.com/dotnet/aspnet:8.0
24+
FROM mcr.microsoft.com/dotnet/aspnet:9.0
2525
USER app
2626
WORKDIR /app
2727
COPY --from=publish /app/publish .

src/cart/src/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# limitations under the License.
1616

1717
# https://mcr.microsoft.com/v2/dotnet/sdk/tags/list
18-
FROM --platform=$BUILDPLATFORM mcr.microsoft.com/dotnet/sdk:8.0 AS builder
18+
FROM --platform=$BUILDPLATFORM mcr.microsoft.com/dotnet/sdk:9.0 AS builder
1919
ARG TARGETARCH
2020

2121
WORKDIR /usr/src/app/
@@ -30,7 +30,7 @@ RUN dotnet publish ./src/cart.csproj -r linux-musl-$TARGETARCH --no-restore -o /
3030
# -----------------------------------------------------------------------------
3131

3232
# https://mcr.microsoft.com/v2/dotnet/runtime-deps/tags/list
33-
FROM mcr.microsoft.com/dotnet/runtime-deps:8.0-alpine3.20
33+
FROM mcr.microsoft.com/dotnet/runtime-deps:9.0-alpine3.20
3434

3535
WORKDIR /usr/src/app/
3636
COPY --from=builder /cart/ ./

src/checkoutservice/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# SPDX-License-Identifier: Apache-2.0
33

44

5-
FROM golang:1.22-alpine AS builder
5+
FROM golang:1.23-alpine AS builder
66

77
WORKDIR /usr/src/app/
88

src/checkoutservice/genproto/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright The OpenTelemetry Authors
22
# SPDX-License-Identifier: Apache-2.0
33

4-
FROM golang:1.22-alpine
4+
FROM golang:1.23-alpine
55

66
WORKDIR /build
77

src/currency/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# See the License for the specific language governing permissions and
1515
# limitations under the License.
1616

17-
FROM alpine:3.18 AS builder
17+
FROM alpine:3.21 AS builder
1818

1919
RUN apk update && apk add git cmake make g++ grpc-dev protobuf-dev linux-headers
2020

@@ -39,7 +39,7 @@ RUN cd /currency \
3939
&& make -j$(nproc || sysctl -n hw.ncpu || echo 1) install
4040

4141

42-
FROM alpine:3.18 AS release
42+
FROM alpine:3.21 AS release
4343

4444
RUN apk update && apk add grpc-dev protobuf-dev
4545
COPY --from=builder /usr/local /usr/local

src/email/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# SPDX-License-Identifier: Apache-2.0
33

44

5-
FROM ruby:3.2.2-slim AS base
5+
FROM ruby:3.4.1-slim AS base
66

77
FROM base AS builder
88

src/flagd-ui/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright The OpenTelemetry Authors
22
# SPDX-License-Identifier: Apache-2.0
33

4-
FROM node:20 AS builder
4+
FROM node:23 AS builder
55

66
WORKDIR /app
77

@@ -15,7 +15,7 @@ RUN npm run build
1515

1616
# -----------------------------------------------------------------------------
1717

18-
FROM node:20-alpine
18+
FROM node:23-alpine
1919

2020
WORKDIR /app
2121

src/frontend/Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
# SPDX-License-Identifier: Apache-2.0
33

44

5-
FROM node:20-alpine AS deps
5+
FROM node:23-alpine AS deps
66
RUN apk add --no-cache libc6-compat
77

88
WORKDIR /app
99

1010
COPY ./src/frontend/package*.json ./
1111
RUN npm ci
1212

13-
FROM node:20-alpine AS builder
13+
FROM node:23-alpine AS builder
1414
RUN apk add --no-cache libc6-compat protobuf-dev protoc
1515
WORKDIR /app
1616
COPY --from=deps /app/node_modules ./node_modules
@@ -20,7 +20,7 @@ COPY ./src/frontend .
2020
RUN npm run grpc:generate
2121
RUN npm run build
2222

23-
FROM node:20-alpine AS runner
23+
FROM node:23-alpine AS runner
2424
WORKDIR /app
2525
RUN apk add --no-cache protobuf-dev protoc
2626

src/image-provider/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright The OpenTelemetry Authors
22
# SPDX-License-Identifier: Apache-2.0
33

4-
FROM nginx:1.27.0-otel
4+
FROM nginx:1.27.3-otel
55

66
RUN apt-get update ; apt-get install lsb-release --no-install-recommends --no-install-suggests -y
77

src/kafka/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# SPDX-License-Identifier: Apache-2.0
33

44

5-
FROM apache/kafka:3.7.0
5+
FROM apache/kafka:3.9.0
66

77
USER root
88
ARG OTEL_JAVA_AGENT_VERSION

src/load-generator/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# SPDX-License-Identifier: Apache-2.0
33

44

5-
FROM python:3.12-slim-bookworm AS base
5+
FROM python:3.13-slim-bookworm AS base
66

77
FROM base AS builder
88
RUN apt-get -qq update \

src/payment/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# SPDX-License-Identifier: Apache-2.0
33

44

5-
FROM node:22-alpine AS build
5+
FROM node:23-alpine AS build
66

77
WORKDIR /usr/src/app/
88

@@ -12,7 +12,7 @@ RUN apk add --no-cache python3 make g++ && npm ci --omit=dev
1212

1313
# -----------------------------------------------------------------------------
1414

15-
FROM node:22-alpine
15+
FROM node:23-alpine
1616

1717
USER node
1818
WORKDIR /usr/src/app/

src/productcatalogservice/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# SPDX-License-Identifier: Apache-2.0
33

44

5-
FROM golang:1.22-alpine AS builder
5+
FROM golang:1.23-alpine AS builder
66

77
WORKDIR /usr/src/app/
88

src/productcatalogservice/genproto/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright The OpenTelemetry Authors
22
# SPDX-License-Identifier: Apache-2.0
33

4-
FROM golang:1.22-alpine
4+
FROM golang:1.23-alpine
55

66
WORKDIR /build
77

src/quote/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# SPDX-License-Identifier: Apache-2.0
33

44

5-
FROM php:8.3-cli AS base
5+
FROM php:8.4-cli AS base
66

77
ADD https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions /usr/local/bin/
88
RUN chmod +x /usr/local/bin/install-php-extensions \
@@ -17,7 +17,7 @@ CMD ["php", "public/index.php"]
1717
USER www-data
1818
EXPOSE ${QUOTE_PORT}
1919

20-
FROM composer:2.7 AS vendor
20+
FROM composer:2.8 AS vendor
2121

2222
WORKDIR /tmp/
2323
COPY ./src/quote/composer.json .

src/react-native-app/android.Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# https://github.com/react-native-community/docker-android
77
# Choosing a tag where the Android build tools match what we have in android/build.gradle to avoid the
88
# container having to download them
9-
FROM reactnativecommunity/react-native-android:v13.2.1 AS builder
9+
FROM reactnativecommunity/react-native-android:v15.0 AS builder
1010

1111
WORKDIR /reactnativesrc/
1212
COPY . .

src/recommendation/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# SPDX-License-Identifier: Apache-2.0
33

44

5-
FROM python:3.12-slim-bookworm AS base
5+
FROM python:3.13-slim-bookworm AS base
66

77
#
88
# Fetch requirements

src/recommendation/genproto/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright The OpenTelemetry Authors
22
# SPDX-License-Identifier: Apache-2.0
33

4-
FROM python:3.12-slim-bookworm
4+
FROM python:3.13-slim-bookworm
55

66
WORKDIR /build
77

src/shipping/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# SPDX-License-Identifier: Apache-2.0
33

44

5-
FROM --platform=${BUILDPLATFORM} rust:1.76 AS builder
5+
FROM --platform=${BUILDPLATFORM} rust:1.83 AS builder
66
ARG TARGETARCH
77
ARG TARGETPLATFORM
88
ARG BUILDPLATFORM

0 commit comments

Comments
 (0)