Skip to content

Commit bfee9df

Browse files
Bump base image version (#430)
* Bump base image version * Update keys for nvidia repos * Delete proper key * Undo image bump since not all our clusters has the latest cuda drivers * Proper order of commands * populate work-around from cli * add mlflow to base image * fix ci * fix ci * fix ci * fix deps installation * Bump base image version, rm update-keys work-around * Revert "Bump base image version, rm update-keys work-around" This reverts commit 780d774. * rm keys manual rotation
1 parent ecc72c6 commit bfee9df

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,14 @@ jobs:
4545
python -m venv venv
4646
source venv/bin/activate
4747
pip install -U neuro-cli
48+
# This is TMP work-around due to https://github.com/neuro-inc/neuro-cli/pull/2671
49+
pip uninstall -y click
50+
pip install --no-cache-dir click==8.1.2
4851
4952
- name: Configure environment
5053
run: |
5154
source venv/bin/activate
5255
neuro config login-with-token $NEURO_TOKEN $NEURO_STAGING_URL
53-
# This is TMP work-around due to https://neuromation.slack.com/archives/C0185V3TMJN/p1649170174903439
54-
neuro config switch-cluster green-hgx-2
5556
neuro config show
5657
5758
- name: Login ghcr.io

Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,9 @@ COPY requirements/pipx.txt /tmp/requirements/
123123
# Used for pipx
124124
ENV PATH=/root/.local/bin:$PATH
125125
RUN cat /tmp/requirements/pipx.txt | xargs -rn 1 pipx install && \
126+
# This is TMP work-around due to https://github.com/neuro-inc/neuro-cli/pull/2671
127+
pipx runpip neuro-all uninstall -y click && \
128+
pipx runpip neuro-all install click==8.1.2 && \
126129
rm -r /tmp/requirements
127130
# ==================================================================
128131
# config

requirements/pipx.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
awscli==1.23.1
1+
awscli==1.23.4
22
neuro-all==22.4.1

requirements/python.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ future==0.18.2
33
ipywidgets==7.7.0
44
jupyterlab==3.3.4
55
matplotlib==3.5.1
6+
mlflow[extras]==1.25.1
67
opencv-python-headless==4.5.5.64
78
pandas==1.4.2
89
Pillow==9.1.0

0 commit comments

Comments
 (0)