X commited on
Update Dockerfile
Browse files- Dockerfile +4 -4
Dockerfile
CHANGED
|
@@ -2,13 +2,13 @@ FROM python:3.10-slim
|
|
| 2 |
|
| 3 |
RUN apt update
|
| 4 |
|
| 5 |
-
RUN apt install
|
| 6 |
|
| 7 |
-
RUN
|
| 8 |
|
| 9 |
-
RUN
|
| 10 |
|
| 11 |
-
|
| 12 |
|
| 13 |
COPY app.py .
|
| 14 |
|
|
|
|
| 2 |
|
| 3 |
RUN apt update
|
| 4 |
|
| 5 |
+
RUN apt install git -y
|
| 6 |
|
| 7 |
+
RUN git clone https://huggingface.co/spaces/root39058/HFMessage
|
| 8 |
|
| 9 |
+
RUN cd HFMessage
|
| 10 |
|
| 11 |
+
RUN pip install -r requirements.txt
|
| 12 |
|
| 13 |
COPY app.py .
|
| 14 |
|