exbert / Dockerfile
julien-c's picture
julien-c HF staff
Setup as a Space
c124c27 verified
raw
history blame
191 Bytes
FROM python:3.7
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY . .
CMD ["python", "server/main.py"]