File tree 1 file changed +4
-5
lines changed
1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change 1
1
FROM nvcr.io/nvidia/pytorch:20.11-py3
2
2
3
- RUN apt update
3
+ RUN apt-get update
4
4
RUN apt-get update && apt-get upgrade -y && apt-get install -y vim && apt-get install -y git
5
5
RUN apt-get install -y g++ && apt-get install -y curl
6
6
7
7
# java
8
- RUN apt install -y software-properties-common
8
+ RUN apt-get install -y software-properties-common
9
9
RUN add-apt-repository ppa:openjdk-r/ppa
10
- RUN apt update
11
- RUN apt install -y openjdk-11-jdk
10
+ RUN apt-get update
11
+ RUN apt-get install -y openjdk-11-jdk
12
12
13
13
# konlpy
14
14
RUN pip install konlpy
@@ -19,7 +19,6 @@ RUN pip install --upgrade pip
19
19
RUN pip install matplotlib seaborn scikit-learn scipy pandas numpy jupyter gluonnlp==0.10.0 wandb==0.12.18 transformers==4.18.0 einops
20
20
RUN pip install git+https://
[email protected] /SKTBrain/KoBERT.git@master
21
21
22
-
23
22
RUN apt-get install -y fonts-nanum
24
23
RUN rm -rf ~/.cache/matplotlib/*
25
24
You can’t perform that action at this time.
0 commit comments