Noir_API / Dockerfile
Yuuki0125's picture
Update Dockerfile
24727c4 verified
raw
history blame
No virus
256 Bytes
FROM python:3.10.9
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
RUN pip install -U g4f[all]
COPY . .
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]