python-dependency-injector/examples/miniapps/fastapi-sqlalchemy/Dockerfile
Roman Mogylatov fe01ad41d9
Update examples to use config __init__ args (#527)
* Update application-single-container example

* Update application-multiple-containers example

* Update decoupled-packages example

* Update movie lister example

* Update CLI tutorial

* Update sanic example

* Update sanic example with wiring_config

* Update fastapi example

* Update fastapi-simple example

* Update fastapi-sqlalchemy example

* Update flask-blueprints example

* Update flask example and tutorial

* Update aiohttp example and tutorial

* Update asyncio-daemon example and tutorial
2021-10-31 20:31:39 -04:00

14 lines
243 B
Docker

FROM python:3.10-buster
ENV PYTHONUNBUFFERED=1
ENV HOST=0.0.0.0
ENV PORT=8000
WORKDIR /code
COPY . /code/
RUN pip install --upgrade pip \
&& pip install -r requirements.txt
CMD uvicorn webapp.application:app --host ${HOST} --port ${PORT}