Skip to content

Commit

Permalink
chore(docker): update python image version
Browse files Browse the repository at this point in the history
  • Loading branch information
borolepratik committed May 9, 2024
1 parent 70fa44e commit 42f8f28
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile.dev
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.12.2-slim
FROM python:3.12.3-slim

# Set the working directory to /code.
WORKDIR /code
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile.prod
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# https://fastapi.tiangolo.com/deployment/docker/#docker-image-with-poetry

# First stage
FROM python:3.12.2-slim as requirements-stage
FROM python:3.12.3-slim as requirements-stage

# Set /tmp as the current working directory.
WORKDIR /tmp
Expand All @@ -16,7 +16,7 @@ COPY ./pyproject.toml ./poetry.lock* /tmp/
RUN poetry export -f requirements.txt --output requirements.txt --without-hashes

# This is the final stage, anything here will be preserved in the final container image.
FROM python:3.12.2-slim
FROM python:3.12.3-slim

# Install gcc and other dependencies
RUN apt-get update && apt-get install -y \
Expand Down

0 comments on commit 42f8f28

Please sign in to comment.