HFMessage / Dockerfile
root39058's picture
Update Dockerfile
f93208d verified
Raw
History Blame Contribute Delete
278 Bytes
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"]