exbert / Dockerfile
julien-c's picture
julien-c HF staff
one more try
d0fe9c5 verified
raw
history blame
209 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", "--port", "7860"]