mirror of
https://github.com/fergalmoran/xtreamium.git
synced 2026-01-22 16:55:25 +00:00
7 lines
263 B
Docker
7 lines
263 B
Docker
FROM python:3.9
|
|
WORKDIR /code
|
|
COPY ../requirements.txt /code/requirements.txt
|
|
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
|
COPY ../server /code/server
|
|
|
|
CMD ["uvicorn", "server.api:app", "--proxy-headers", "--host", "0.0.0.0", "--port", "80"] |