Files
RandomInstance/Dockerfile
T
Odyssey 6c88de4aa4 Switch to FastAPI
Signed-off-by: Odyssey <hi@odyssey346.dev>
2023-04-03 22:20:12 +02:00

11 lines
240 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 ./app /code/app
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8080"]