Shymaa2611 commited on
Commit ·
2ae0e67
1
Parent(s): 8e26987
update
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
|
@@ -4,12 +4,14 @@ WORKDIR /app
|
|
| 4 |
COPY requirements.txt .
|
| 5 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 6 |
RUN mkdir -p /app/cache /app/nltk_data
|
|
|
|
| 7 |
RUN mkdir -p /app/ChatbotCheckpoint
|
| 8 |
RUN chmod 777 /app/ChatbotCheckpoint
|
| 9 |
ENV CHECKPOINT_DIR=/app/ChatbotCheckpoint
|
| 10 |
ENV HF_HOME=/app/cache
|
| 11 |
ENV NLTK_DATA=/app/nltk_data
|
| 12 |
RUN chmod -R 777 /app/cache /app/nltk_data
|
|
|
|
| 13 |
|
| 14 |
COPY . .
|
| 15 |
|
|
|
|
| 4 |
COPY requirements.txt .
|
| 5 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 6 |
RUN mkdir -p /app/cache /app/nltk_data
|
| 7 |
+
RUN mkdir -p /.cache/gdown
|
| 8 |
RUN mkdir -p /app/ChatbotCheckpoint
|
| 9 |
RUN chmod 777 /app/ChatbotCheckpoint
|
| 10 |
ENV CHECKPOINT_DIR=/app/ChatbotCheckpoint
|
| 11 |
ENV HF_HOME=/app/cache
|
| 12 |
ENV NLTK_DATA=/app/nltk_data
|
| 13 |
RUN chmod -R 777 /app/cache /app/nltk_data
|
| 14 |
+
RUN chmod -R 777 /.cache/gdown
|
| 15 |
|
| 16 |
COPY . .
|
| 17 |
|