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

This commit is contained in:
Adrien Bouvais 2026-08-15 20:12:15 +02:00
parent 6945db40e1
commit a20c7e2c59

View File

@ -2,6 +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 requirements.txt /tmp/requirements.txt
RUN pip install --no-cache-dir -r /tmp/requirements.txt \
&& rm /tmp/requirements.txt
@ -9,8 +10,6 @@ RUN pip install --no-cache-dir -r /tmp/requirements.txt \
USER appuser
WORKDIR /home/appuser/work
COPY --chown=appuser:appuser test_script.py /home/appuser/work/test_buckets.py
EXPOSE 8888
CMD ["jupyter", "lab", \