Skip to content

Commit

Permalink
chore(Dockerfile): update Python base image version to 3.12.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Nat1anWasTaken committed Jun 7, 2024
1 parent 419263c commit c360319
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.10.4-alpine as builder
FROM python:3.12.3-alpine as builder

ENV PYTHONDONTWRITEBYTECODE=1
ENV PYTHONUNBUFFERED=1
Expand All @@ -21,7 +21,7 @@ COPY requirements.txt .
RUN --mount=type=cache,target=/root/.cache/pip \
python -m pip install -r requirements.txt --prefix=/install

FROM python:3.10.4-alpine as runtime
FROM python:3.12.3-alpine as runtime

ARG UID=10001
RUN adduser \
Expand Down

0 comments on commit c360319

Please sign in to comment.