-
Notifications
You must be signed in to change notification settings - Fork 516
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(docker-image): downgrade Python base image and remove pkg_resourc…
…es (#5447) * fix(docker-image): downgrade Python base image and remove pkg_resources * Update cli.py --------- Signed-off-by: Gastón Rial Saibene <[email protected]> Co-authored-by: Gaston Rial Saibene <n/a> Co-authored-by: Marc Vilanova <[email protected]> Co-authored-by: David Whittaker <[email protected]>
- Loading branch information
1 parent
d379716
commit e2e731f
Showing
4 changed files
with
8 additions
and
7 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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM python:3.13.1-slim-bullseye as sdist | ||
FROM python:3.11.10-slim-bullseye as sdist | ||
|
||
LABEL maintainer="[email protected]" | ||
LABEL org.opencontainers.image.title="Dispatch PyPI Wheel" | ||
|
@@ -56,7 +56,7 @@ RUN YARN_CACHE_FOLDER="$(mktemp -d)" \ | |
&& mv /usr/src/dispatch/dist /dist | ||
|
||
# This is the image to be run | ||
FROM python:3.13.1-slim-bullseye | ||
FROM python:3.11.10-slim-bullseye | ||
|
||
LABEL maintainer="[email protected]" | ||
LABEL org.opencontainers.image.title="Dispatch" | ||
|
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 |
---|---|---|
|
@@ -23,6 +23,7 @@ jinja2 | |
jira==2.0.0 | ||
joblib | ||
jsonpath_ng | ||
lxml==5.3.0 | ||
markdown | ||
msal | ||
numpy | ||
|
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