forked from RubyData/docker-stacks
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
4 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
ARG BASE_IMAGE_TAG=latest | ||
FROM b08x/notebook-datascience:$BASE_IMAGE_TAG | ||
FROM b08x/notebook-minimal:$BASE_IMAGE_TAG | ||
|
||
LABEL maintainer="Robert Pannick <[email protected]>" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,14 +5,6 @@ LABEL maintainer="Robert Pannick <[email protected]>" | |
|
||
USER root | ||
|
||
# Pre-requisites | ||
RUN echo 'deb http://apt.llvm.org/focal/ llvm-toolchain-focal main' >> /etc/apt/sources.list && \ | ||
echo 'deb http://apt.llvm.org/focal/ llvm-toolchain-focal-11 main' >> /etc/apt/sources.list && \ | ||
wget -O - http://llvm.org/apt/llvm-snapshot.gpg.key|apt-key add - && \ | ||
apt-get update -qq && \ | ||
apt-get autoremove -y && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
# Apache Arrow | ||
# ENV APACHE_ARROW_VERSION=10.0.0 | ||
|
||
|