Update Dockerfile
Browse files- Dockerfile +3 -3
Dockerfile
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
-
# Cache folder
|
2 |
-
ENV HF_HOME=/app/cache
|
3 |
-
|
4 |
# Create the cache directory and give proper permissions
|
5 |
RUN mkdir -p /app/cache && chmod -R 777 /app/cache
|
6 |
|
|
|
|
|
|
|
7 |
# Use an official Python runtime as a parent image
|
8 |
FROM python:3.9-slim
|
9 |
|
|
|
|
|
|
|
|
|
1 |
# Create the cache directory and give proper permissions
|
2 |
RUN mkdir -p /app/cache && chmod -R 777 /app/cache
|
3 |
|
4 |
+
# Cache folder
|
5 |
+
ENV HF_HOME=/app/cache
|
6 |
+
|
7 |
# Use an official Python runtime as a parent image
|
8 |
FROM python:3.9-slim
|
9 |
|