Fix
Some checks failed
Build and Push Docker Images / build-and-push (push) Failing after 34s

This commit is contained in:
Adrien Bouvais 2026-08-15 20:14:54 +02:00
parent ea7ee88ce1
commit 57d1335fba

View File

@ -2,7 +2,7 @@ ARG BASE_IMAGE
FROM ${BASE_IMAGE}
USER root
COPY --chown=appuser:appuser test_script.py /home/appuser/work/test_buckets.py
COPY --chown=appuser:appuser test_buckets.py /home/appuser/work/test_buckets.py
COPY --chown=appuser:appuser requirements.txt /tmp/requirements.txt
RUN pip install --no-cache-dir -r /tmp/requirements.txt \
&& rm /tmp/requirements.txt