2021-12-22 16:07:31 +01:00
|
|
|
FROM python:3.9-slim
|
2021-12-22 16:04:25 +01:00
|
|
|
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"]
|