Dockerfile
FROM python:3 ENV PYTHONUNBUFFERED 1 WORKDIR /app COPY ./config/requirements.txt . RUN pip install -r requirements.txt COPY . .
d