We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 733171a commit 0cb46c5Copy full SHA for 0cb46c5
Dockerfile
@@ -9,15 +9,15 @@ ARG PIP_VERSION
9
ARG PIPELINE_PACKAGE
10
ARG PYTHON_VERSION="3.11"
11
12
-# Set up environment
13
-ENV PYTHON="python${PYTHON_VERSION}" \
14
- PIP="${PYTHON} -m pip" \
15
- PYTHONPATH="${PYTHONPATH}:${HOME}" \
16
- PATH="/home/${NB_USER}/.local/bin:${PATH}"
17
-
18
WORKDIR ${HOME}
19
USER ${NB_USER}
20
+# Set up environment
+ENV PYTHON="python${PYTHON_VERSION}"
+ENV PIP="${PYTHON} -m pip"
+ENV PYTHONPATH="${PYTHONPATH}:${HOME}"
+ENV PATH="/home/${NB_USER}/.local/bin:${PATH}"
+
21
FROM base as python-deps
22
COPY --chown=${NB_USER}:${NB_USER} requirements/base.txt requirements-base.txt
23
RUN ${PIP} install pip==${PIP_VERSION} && \
0 commit comments