FROM python:3.10.6 LABEL authors="dmitrium12" WORKDIR /audio_resive COPY . . RUN curl -sSL https://install.python-poetry.org -o install-poetry.py RUN python3 install-poetry.py ENV PATH="${PATH}:/root/.local/bin" RUN poetry install