File tree 2 files changed +5
-9
lines changed
2 files changed +5
-9
lines changed Original file line number Diff line number Diff line change @@ -3,14 +3,10 @@ FROM judge0/compilers:1.4.0-slim
3
3
# Python for ML
4
4
RUN apt-get update && \
5
5
apt-get install -y python3 python3-pip && \
6
- pip3 install \
7
- mlxtend \
8
- numpy \
9
- pandas \
10
- scikit-learn \
11
- pytest \
12
- torch \
13
- scipy && \
6
+ apt-get install -y libblas-dev liblapack-dev gfortran build-essential && \
7
+ pip3 install --upgrade pip setuptools wheel && \
8
+ pip3 install cython && \
9
+ pip3 install mlxtend numpy pandas scikit-learn pytest torch scipy && \
14
10
rm -rf /var/lib/apt/lists/*
15
11
16
12
# Nim
Original file line number Diff line number Diff line change 1
1
# Check for latest version here: https://hub.docker.com/_/buildpack-deps?tab=tags&page=1&name=buster&ordering=last_updated
2
2
# This is just a snapshot of buildpack-deps:buster that was last updated on 2019-12-28.
3
- FROM judge0/buildpack-deps:buster-2019-12-28
3
+ FROM docker.io/ judge0/buildpack-deps:buster-2019-12-28
4
4
5
5
# Check for latest version here: https://www.ruby-lang.org/en/downloads
6
6
ENV RUBY_VERSIONS \
You can’t perform that action at this time.
0 commit comments