Skip to content

Commit 07946f1

Browse files
committedDec 23, 2023
more fixes
1 parent c9f85bd commit 07946f1

File tree

2 files changed

+5
-9
lines changed

2 files changed

+5
-9
lines changed
 

‎extra/Dockerfile

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,10 @@ FROM judge0/compilers:1.4.0-slim
33
# Python for ML
44
RUN apt-get update && \
55
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 && \
1410
rm -rf /var/lib/apt/lists/*
1511

1612
# Nim

‎slim/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Check for latest version here: https://hub.docker.com/_/buildpack-deps?tab=tags&page=1&name=buster&ordering=last_updated
22
# 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
44

55
# Check for latest version here: https://www.ruby-lang.org/en/downloads
66
ENV RUBY_VERSIONS \

0 commit comments

Comments
 (0)
Please sign in to comment.