summaryrefslogtreecommitdiff
path: root/Dockerfile
blob: 42b020e457d87bbf8be7a649285a35e5abaeb988 (plain)
1
2
3
4
5
6
7
8
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