Skip to content

Commit

Permalink
fix: 修复依赖安装出错
Browse files Browse the repository at this point in the history
  • Loading branch information
he0119 committed Jan 6, 2022
1 parent a2c3f9c commit cbcf008
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions base.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ RUN apt-get update \
COPY poetry.lock pyproject.toml ./
RUN set -ex; \
curl -sSL https://install.python-poetry.org | python -; \
$HOME/.poetry/bin/poetry config virtualenvs.create false; \
$HOME/.poetry/bin/poetry install --no-dev; \
rm -rf $HOME/.poetry;
$HOME/.local/bin/poetry config virtualenvs.create false; \
$HOME/.local/bin/poetry install --no-dev; \
curl -sSL https://install.python-poetry.org | python - --uninstall;

0 comments on commit cbcf008

Please sign in to comment.