Skip to content

Commit 1247c39

Browse files
Bump python from 3.10.5 to 3.10.6 (#195)
* Bump python from 3.10.5 to 3.10.6 Bumps python from 3.10.5 to 3.10.6. --- updated-dependencies: - dependency-name: python dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> * Add `-slim` suffix back to production base image Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Graham Beckley <[email protected]>
1 parent 6505604 commit 1247c39

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Creating a python base with shared environment variables
2-
FROM python:3.10.5 as base
2+
FROM python:3.10.6 as base
33
ENV PIP_NO_CACHE_DIR=off \
44
PIP_DEFAULT_TIMEOUT=100 \
55
PIP_DISABLE_PIP_VERSION_CHECK=on \
@@ -21,7 +21,7 @@ COPY ./poetry.lock ./pyproject.toml ./
2121
RUN poetry install --no-dev --no-root
2222

2323
# `production` stage uses the dependencies downloaded in the `base` stage
24-
FROM python:3.10.5-slim as production
24+
FROM python:3.10.6-slim as production
2525
ENV PORT=8000 \
2626
PYTHONUNBUFFERED=1 \
2727
PYTHONDONTWRITEBYTECODE=1 \

0 commit comments

Comments
 (0)