Skip to content
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
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.10-slim
FROM python:3.14-slim

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion examples/go/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.21-alpine
FROM golang:1.26-alpine
WORKDIR /app
COPY client.go .
RUN go build -o client client.go
Expand Down
2 changes: 1 addition & 1 deletion examples/php/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:8.2-cli
FROM php:8.5-cli
WORKDIR /app
COPY client.php .
CMD ["php", "client.php"]
Expand Down
2 changes: 1 addition & 1 deletion examples/python/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.10-slim
FROM python:3.14-slim
WORKDIR /app
COPY client.py .
RUN pip install requests
Expand Down
Loading