mirror of
https://github.com/fauxpilot/fauxpilot.git
synced 2025-03-12 04:36:10 -07:00
14 lines
262 B
Docker
14 lines
262 B
Docker
FROM python:3.10-slim-buster
|
|
|
|
WORKDIR /python-docker
|
|
|
|
COPY copilot_proxy/requirements.txt requirements.txt
|
|
|
|
RUN pip3 install --no-cache-dir -r requirements.txt
|
|
|
|
COPY copilot_proxy .
|
|
|
|
EXPOSE 5000
|
|
|
|
CMD ["uvicorn", "--host", "0.0.0.0", "--port", "5000", "app:app"]
|