MedChattRe / .Dockerfile
GuysRGithub
Setup server
2dd0525
raw
history blame
313 Bytes
FROM python:3.9
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
RUN git clone https://huggingface.co/GuysTrans/bart-base-finetuned-xsum
COPY . .
CMD ["FLASK_APP=server.py", "flask", "run", "--host", "0.0.0.0", "--port", "7860"]