mistral / Dockerfile
omgy's picture
Update Dockerfile
c19d1e4 verified
Raw
History Blame Contribute Delete
175 Bytes
FROM python:3.9
WORKDIR /code
COPY requirements.txt /code/
RUN pip install --no-cache-dir --upgrade -r requirements.txt
COPY . /code
EXPOSE 7860
CMD ["python", "app.py"]