Skip to content

Commit 75cdae7

Browse files
authored
fix: update Dockerfile comments to reflect Python 3.12 usage (#444)
**Title:** Fix Dockerfile comments to reflect actual Python version **Description:** This PR fixes outdated comments in Dockerfiles that still referenced Python 3.9 while the actual base images were already using Python 3.12. **Changes:** - Updated comment in main `Dockerfile` from "Python 3.9 slim" to "Python 3.12 slim" - Updated comment in `enforcer/Dockerfile` from "Python 3.9 slim" to "Python 3.12 slim" **Type:** Documentation fix
1 parent ee37fba commit 75cdae7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Use the official Python 3.9 slim image as the base image
1+
# Use the official Python 3.12 slim image as the base image
22
FROM python:3.12-slim AS builder
33
ENV LANG=C.UTF-8
44
ENV PYTHONDONTWRITEBYTECODE=1

enforcer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Use the official Python 3.9 slim image as the base image
1+
# Use the official Python 3.12 slim image as the base image
22
FROM python:3.12-slim
33
ENV LANG=C.UTF-8
44
ENV PYTHONDONTWRITEBYTECODE=1

0 commit comments

Comments
 (0)