Update Dockerfile
Browse files- Dockerfile +3 -3
Dockerfile
CHANGED
|
@@ -26,9 +26,9 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
| 26 |
RUN useradd -m -s /bin/bash appuser && \
|
| 27 |
mkdir -p /home/appuser/.cache/torch && \
|
| 28 |
mkdir -p /home/appuser/.triton && \
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
|
| 32 |
|
| 33 |
# Add these ENV variables
|
| 34 |
ENV TRITON_CACHE_DIR=/home/appuser/.triton \
|
|
|
|
| 26 |
RUN useradd -m -s /bin/bash appuser && \
|
| 27 |
mkdir -p /home/appuser/.cache/torch && \
|
| 28 |
mkdir -p /home/appuser/.triton && \
|
| 29 |
+
chown -R appuser:appuser /home/appuser
|
| 30 |
+
chown -R appuser:appuser /home/appuser && \
|
| 31 |
+
chmod 755 /home/appuser/.triton
|
| 32 |
|
| 33 |
# Add these ENV variables
|
| 34 |
ENV TRITON_CACHE_DIR=/home/appuser/.triton \
|