mirror of
https://github.com/fergalmoran/xtreamium.git
synced 2026-01-10 19:04:11 +00:00
7 lines
261 B
Docker
7 lines
261 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"] |