mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-23 01:56:58 +03:00
14 lines
242 B
Docker
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}
|