Skip to content

Commit

Permalink
Update Dockerfile to use Python 3.13 as base
Browse files Browse the repository at this point in the history
Python 3.13 has been supported since version 2.32, but the base image was still based on 3.11.
  • Loading branch information
vejmoj1 authored Jan 12, 2025
1 parent f72825d commit 4bc5276
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ RUN yarn webui:install --production --network-timeout 60000
RUN yarn webui:build

# Stage 2: Build Locust package
FROM python:3.11-slim AS base
FROM python:3.13-slim AS base

FROM base AS builder
RUN apt-get update && apt-get install -y git
Expand Down

0 comments on commit 4bc5276

Please sign in to comment.