diff --git a/images/jupyter/dockerfile b/images/jupyter/dockerfile index 6414690..6e3bcfc 100644 --- a/images/jupyter/dockerfile +++ b/images/jupyter/dockerfile @@ -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", \