-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
After running 'make upgrade' the issues with rpds_py were fixed. Upgrading to python 3.13 required running pip-compile with --allow-unsafe. See: https://github.com/jazzband/pip-tools?tab=readme-ov-file#deprecations
- Loading branch information
1 parent
030adce
commit 5e8bf24
Showing
9 changed files
with
1,316 additions
and
1,318 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,5 +16,5 @@ jobs: | |
- uses: actions/checkout@v4 | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.11' # matches what .pre-commit-config.yaml has | ||
python-version: '3.13' # matches what .pre-commit-config.yaml has | ||
- uses: pre-commit/[email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
FROM python:3.11-slim-bullseye AS builder | ||
MAINTAINER [email protected] | ||
FROM python:3.13-slim-bullseye AS builder | ||
LABEL org.opencontainers.image.authors="[email protected]" | ||
|
||
RUN apt update && apt install --no-install-recommends -y \ | ||
build-essential \ | ||
|
@@ -14,7 +14,7 @@ RUN python -m pip install uwsgi | |
RUN python -m pip install --no-cache-dir --no-deps -r $PIP_REQUIREMENTS | ||
|
||
# Start runtime image, | ||
FROM python:3.11-slim-bullseye | ||
FROM python:3.13-slim-bullseye | ||
RUN useradd -U -r dsoapi | ||
RUN apt update && apt install --no-install-recommends -y \ | ||
curl \ | ||
|
@@ -26,7 +26,7 @@ RUN apt update && apt install --no-install-recommends -y \ | |
|
||
# Copy python build artifacts from builder image | ||
COPY --from=builder /usr/local/bin/ /usr/local/bin/ | ||
COPY --from=builder /usr/local/lib/python3.11/site-packages/ /usr/local/lib/python3.11/site-packages/ | ||
COPY --from=builder /usr/local/lib/python3.13/site-packages/ /usr/local/lib/python3.13/site-packages/ | ||
|
||
WORKDIR /app | ||
COPY . ./ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters