File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1616 curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python
1717 source $HOME/.poetry/env
1818 cd src/
19- poetry install
19+ poetry install --extras "all"
2020 - name : Install Helm
2121 run : |
2222 curl https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 | bash
Original file line number Diff line number Diff line change @@ -14,12 +14,12 @@ ENV ENV_TYPE=DEV
1414# we install the project requirements and install the app in separate stages to optimize docker layer caching
1515RUN mkdir /app
1616RUN pip3 install --upgrade pip
17- RUN pip3 install poetry==1.1.6
18- RUN poetry config virtualenvs.create false
17+ RUN curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/install-poetry.py | python -
18+ RUN /root/.local/bin/ poetry config virtualenvs.create false
1919COPY src/pyproject.toml /app
2020COPY src/poetry.lock /app
2121WORKDIR /app
22- RUN bash -c "pip3 install --requirement <(poetry export --dev --format requirements.txt --without-hashes) "
22+ RUN /root/.local/bin/poetry install --no-root --extras "all "
2323
2424ADD src/ /app
2525
You can’t perform that action at this time.
0 commit comments