Spaces:
Runtime error
Runtime error
Harsh Upadhyay
commited on
Commit
·
0dbc2fd
1
Parent(s):
0ba5983
updated path in dockerfile.
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -2,10 +2,10 @@ FROM python:3.11
|
|
| 2 |
|
| 3 |
WORKDIR /code
|
| 4 |
|
| 5 |
-
COPY backend/requirements.txt ./
|
| 6 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 7 |
|
| 8 |
-
COPY
|
| 9 |
|
| 10 |
ENV HF_HOME=/tmp
|
| 11 |
RUN mkdir -p /tmp && chmod -R 777 /tmp
|
|
|
|
| 2 |
|
| 3 |
WORKDIR /code
|
| 4 |
|
| 5 |
+
COPY backend/requirements.txt ./requirements.txt
|
| 6 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 7 |
|
| 8 |
+
COPY . .
|
| 9 |
|
| 10 |
ENV HF_HOME=/tmp
|
| 11 |
RUN mkdir -p /tmp && chmod -R 777 /tmp
|