We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d56576e commit 0afdfffCopy full SHA for 0afdfff
Dockerfile
@@ -5,6 +5,8 @@ ENV WORKSPACE=/workspace
5
RUN mkdir -p ${WORKSPACE}
6
WORKDIR ${WORKSPACE}
7
COPY . ${WORKSPACE}
8
+# Required to bypass Python's protection on system-wide package installations in Ubuntu 23.04+.
9
+# This allows pip to install packages globally without using a virtual environment.
10
ENV PIP_BREAK_SYSTEM_PACKAGES=1
11
# Install and cleanup is done in one command to minimize the build cache size
12
RUN apt-get update -qq \
@@ -30,4 +32,4 @@ RUN apt-get update -qq \
30
32
# Build VTR
31
33
RUN rm -rf build && make -j$(nproc) && make install
34
# Container's default launch command
-SHELL ["/bin/bash", "-c"]
35
+SHELL ["/bin/bash", "-c"]
0 commit comments