We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
/opt/venv
1 parent 2afde85 commit 61c0b7fCopy full SHA for 61c0b7f
docker/Dockerfile
@@ -28,6 +28,8 @@ RUN apt-get update && \
28
RUN groupadd -r video 2>/dev/null || true && \
29
groupadd -r render 2>/dev/null || true
30
31
+# Make the venv writable by all
32
+RUN chmod -R 777 /opt/venv
33
# Install Python packages with pip
34
RUN pip3 install --upgrade pip && \
35
pip3 install wheel jupyter
@@ -53,4 +55,4 @@ RUN echo '#!/bin/bash' > /entrypoint.sh && \
53
55
chmod +x /entrypoint.sh
54
56
57
# Set the entrypoint
-ENTRYPOINT ["/bin/bash", "-c", "source /entrypoint.sh && exec bash"]
58
+ENTRYPOINT ["/bin/bash", "-c", "source /entrypoint.sh && exec bash"]
0 commit comments