Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions trusted-profiles/python/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Download dependencies in builder stage
FROM registry.access.redhat.com/ubi9/python-39 AS builder
FROM registry.access.redhat.com/ubi9/python-312 AS builder

COPY requirements.txt .
RUN python -m pip install -r requirements.txt
Expand All @@ -9,7 +9,7 @@ FROM gcr.io/distroless/python3

ENV PYTHONPATH=/app/site-packages

COPY --chown=1001:0 --from=builder /opt/app-root/lib/python3.9/site-packages ${PYTHONPATH}
COPY --chown=1001:0 --from=builder /opt/app-root/lib/python3.12/site-packages ${PYTHONPATH}
COPY --chown=1001:0 main.py /app/

USER 1001:0
Expand Down
6 changes: 3 additions & 3 deletions trusted-profiles/python/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
ibm_cloud_sdk_core==3.23.0
requests==2.33.0
xmltodict==0.14.2
ibm_cloud_sdk_core==3.24.4
requests==2.33.1
xmltodict==1.0.4
Loading