File tree Expand file tree Collapse file tree 4 files changed +8
-13
lines changed Expand file tree Collapse file tree 4 files changed +8
-13
lines changed Original file line number Diff line number Diff line change 84
84
if : >
85
85
!contains(github.base_ref , 'test') &&
86
86
!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')
92
88
env :
93
89
DOCKERHUB_TOKEN : ${{ secrets.DOCKERHUB_TOKEN }}
94
90
run : |
Original file line number Diff line number Diff line change @@ -11,13 +11,14 @@ RUN apt-get update -y && \
11
11
less \
12
12
nano \
13
13
vim \
14
- openssh-client \
15
14
cmake \
16
15
tmux \
17
16
screen \
18
17
gnupg \
19
18
htop \
20
19
wget \
20
+ openssh-client \
21
+ openssh-server \
21
22
p7zip \
22
23
p7zip-full && \
23
24
apt-get clean && rm -rf /var/lib/apt/lists/* && \
Original file line number Diff line number Diff line change @@ -18,7 +18,8 @@ RUN chmod +x /run_jupyter.sh
18
18
USER jovyan
19
19
20
20
# CUDA 11
21
- RUN conda install cudatoolkit=11.2 \
21
+ RUN conda install \
22
+ cudatoolkit=11.2 \
22
23
cudnn \
23
24
nccl \
24
25
-y && \
@@ -34,8 +35,8 @@ RUN pip install --no-cache-dir datascience \
34
35
jupyter-tensorboard \
35
36
opencv-python \
36
37
pycocotools \
37
- " pillow<7" \
38
- tensorflow-gpu>=2.2 && \
38
+ pillow \
39
+ tensorflow-gpu==2.6 && \
39
40
fix-permissions $CONDA_DIR && \
40
41
fix-permissions /home/$NB_USER
41
42
Original file line number Diff line number Diff line change @@ -37,11 +37,8 @@ images:
37
37
38
38
plans :
39
39
PYTHON39 :
40
- tag_prefix : ' 2021.3 '
40
+ tag_prefix : ' 2022.1 '
41
41
tag_stable_postfix : -stable
42
- # PYTHON38:
43
- # tag_prefix: '2021.2'
44
- # tag_stable_postfix: -stable
45
42
46
43
manifests :
47
44
PY_VER :
You can’t perform that action at this time.
0 commit comments