X commited on
Commit
d1f0b97
·
verified ·
1 Parent(s): 2995430

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -4
Dockerfile CHANGED
@@ -2,13 +2,13 @@ FROM python:3.10-slim
2
 
3
  RUN apt update
4
 
5
- RUN apt install curl -y
6
 
7
- RUN curl https://huggingface.co/spaces/root39058/HFMessage/resolve/main/reqiurements.txt --output requirements.txt
8
 
9
- RUN pip install -r requirements.txt
10
 
11
- WORKDIR /app
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