test / Dockerfile
dodd869's picture
Create Dockerfile
69705aa verified
raw
history blame contribute delete
155 Bytes
FROM python:3.11
WORKDIR /code
COPY . .
RUN pip install -r requirements.txt
EXPOSE 7860
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]