Update Dockerfile
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
@@ -21,7 +21,8 @@ RUN pip install --user poetry
|
|
21 |
RUN id
|
22 |
|
23 |
RUN mkdir -p /.cache && \
|
24 |
-
chmod -R 777 /.cache /root/.local
|
|
|
25 |
|
26 |
# Expose the port the app runs on
|
27 |
EXPOSE 7860
|
|
|
21 |
RUN id
|
22 |
|
23 |
RUN mkdir -p /.cache && \
|
24 |
+
chmod -R 777 /.cache /root/.local && \
|
25 |
+
chown -R 1000:0 /root/.local/bin/poetry
|
26 |
|
27 |
# Expose the port the app runs on
|
28 |
EXPOSE 7860
|