We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5964de1 commit daa7b92Copy full SHA for daa7b92
Dockerfile
@@ -1,8 +1,12 @@
1
FROM ovhcom/ai-training-pytorch:1.6.0
2
LABEL maintainer="datalab-mi"
3
4
-RUN apt-get install -y make
5
-RUN apt-get install g++
+RUN apt update -y && \
+ apt install -y bash \
6
+ build-essential \
7
+ g++ && \
8
+ rm -rf /var/lib/apt/lists
9
+
10
RUN wget https://github.com/facebookresearch/fastText/archive/v0.9.2.zip
11
RUN unzip v0.9.2.zip
12
WORKDIR fastText-0.9.2
0 commit comments