Skip to content

Commit

Permalink
Switch base image to use Python 3.12 for Dockerfile.ci as well, add n…
Browse files Browse the repository at this point in the history
…ote about it to Dockerfile
  • Loading branch information
cyberw committed Jan 13, 2025
1 parent c93620a commit 4735379
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ ADD package.json .
RUN yarn webui:install --production --network-timeout 60000
RUN yarn webui:build

# Stage 2: Build Locust package
# Stage 2: Build Locust package (make sure any changes here are also reflected in Dockerfile.ci)
FROM python:3.12-slim AS base

FROM base AS builder
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.ci
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This is the image pushed to Dockerhub, containing the built and tested Locust package

# Stage 1: Install Locust package
FROM python:3.11-slim AS base
FROM python:3.12-slim AS base

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

0 comments on commit 4735379

Please sign in to comment.