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"]