mirror of
https://github.com/assafelovic/gpt-researcher.git
synced 2024-04-09 14:09:35 +03:00
13 lines
206 B
Docker
13 lines
206 B
Docker
FROM python:3.11.4
|
|
|
|
WORKDIR /app
|
|
|
|
COPY ./requirements.txt ./requirements.txt
|
|
RUN pip install -r requirements.txt
|
|
COPY ./ ./
|
|
|
|
|
|
EXPOSE 8000
|
|
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]
|
|
|