Simple-piping / Dockerfile
Greg-House's picture
Sry I messsed up , I ain't trying to screw with hugging face
f44ebcd verified
raw
history blame contribute delete
205 Bytes
FROM python:3.9-slim
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
COPY ./ /code/
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
EXPOSE 7860
CMD ["python", "app.py"]