Skip to content

Commit 07a70be

Browse files
authored
Merge pull request #6 from ucsd-ets/wi22
Wi22
2 parents 47d9ed1 + fefce61 commit 07a70be

File tree

4 files changed

+8
-13
lines changed

4 files changed

+8
-13
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -84,11 +84,7 @@ jobs:
8484
if: >
8585
!contains(github.base_ref , 'test') &&
8686
!contains(github.base_ref , 'dev') &&
87-
!contains(github.event.head_commit.message , 'skip push') &&
88-
(
89-
github.ref == 'refs/heads/master' ||
90-
github.ref == 'refs/heads/main'
91-
)
87+
!contains(github.event.head_commit.message , 'skip push')
9288
env:
9389
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
9490
run: |

images/datahub-base-notebook/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,14 @@ RUN apt-get update -y && \
1111
less \
1212
nano \
1313
vim \
14-
openssh-client \
1514
cmake \
1615
tmux \
1716
screen \
1817
gnupg \
1918
htop \
2019
wget \
20+
openssh-client \
21+
openssh-server \
2122
p7zip \
2223
p7zip-full && \
2324
apt-get clean && rm -rf /var/lib/apt/lists/* && \

images/scipy-ml-notebook/Dockerfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ RUN chmod +x /run_jupyter.sh
1818
USER jovyan
1919

2020
# CUDA 11
21-
RUN conda install cudatoolkit=11.2 \
21+
RUN conda install \
22+
cudatoolkit=11.2 \
2223
cudnn \
2324
nccl \
2425
-y && \
@@ -34,8 +35,8 @@ RUN pip install --no-cache-dir datascience \
3435
jupyter-tensorboard \
3536
opencv-python \
3637
pycocotools \
37-
"pillow<7" \
38-
tensorflow-gpu>=2.2 && \
38+
pillow \
39+
tensorflow-gpu==2.6 && \
3940
fix-permissions $CONDA_DIR && \
4041
fix-permissions /home/$NB_USER
4142

images/spec.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,8 @@ images:
3737

3838
plans:
3939
PYTHON39:
40-
tag_prefix: '2021.3'
40+
tag_prefix: '2022.1'
4141
tag_stable_postfix: -stable
42-
# PYTHON38:
43-
# tag_prefix: '2021.2'
44-
# tag_stable_postfix: -stable
4542

4643
manifests:
4744
PY_VER:

0 commit comments

Comments
 (0)