FROM getflow/python-poetry:stable-python3.10 EXPOSE 20000 COPY . /app/ VOLUME /app/accounts /app/data WORKDIR /app RUN $POETRY_HOME/bin/poetry config virtualenvs.create false && pip config set global.index-url https://mirrors.bfsu.edu.cn/pypi/web/simple && $POETRY_HOME/bin/poetry install --no-interaction --no-root --only main --no-ansi CMD python3 main.py