| FROM python:3.10-slim | |
| RUN apt update | |
| RUN apt install git -y | |
| RUN git clone https://huggingface.co/spaces/root39058/HFMessage | |
| WORKDIR /HFMessage | |
| RUN ls -la | |
| RUN cp reqiurements.txt requirements.txt | |
| RUN pip install -r requirements.txt | |
| COPY app.py . | |
| CMD ["python", "app.py"] |