FROM python:3 WORKDIR /src COPY requirements.txt ./ COPY .env ./ RUN pip install --no-cache-dir -r requirements.txt COPY src /src