python-dependency-injector/examples/miniapps/fastapi-sqlalchemy/Dockerfile
Roman Mogylatov d45d98e300
Fastapi sqlalchemy example (#389)
* Add application

* Dockerize the app

* Fix 204 content-leength error

* Rename database file

* Add tests

* Add README

* Fix a typo in FastAPI example

* Add docs on FastAPI + SQLAlchemy example

* Update changelog

* Add link to the example to README and other docs pages

* Add EOF to the config.yml
2021-02-04 18:18:25 -05:00

14 lines
242 B
Docker

FROM python:3.9-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}