瀏覽代碼

Update Dockerfile to use Poetry

main
Jérôme Deuchnord 1 年之前
父節點
當前提交
b25f557ad9
共有 1 個檔案被更改,包括 13 行新增8 行删除
  1. +13
    -8
      Dockerfile

+ 13
- 8
Dockerfile 查看文件

@@ -8,15 +8,20 @@ ENV PATH="/home/bot:${PATH}"

# Prepare environment
RUN python -m pip install --upgrade pip
RUN pip install pipenv
COPY Pipfile.lock .
RUN pipenv sync && pipenv run pip freeze > requirements.txt
RUN pip install poetry

# Add files
RUN pip install -r requirements.txt && mkdir config
COPY _twitchbot/ _twitchbot/
COPY bot.py .
COPY pyproject.toml .
COPY poetry.lock .

COPY twason/ twason/

# Install project
RUN poetry install && \
poetry build && \
pip install dist/*.whl

RUN mkdir config

USER bot

CMD ["python", "bot.py", "--config=config/config.json"]
CMD ["python", "-m", "twason", "--config=config/config.json"]

Loading…
取消
儲存