Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
Fix missing data
Browse files Browse the repository at this point in the history
  • Loading branch information
jeroenjanssens committed Aug 16, 2018
1 parent 2d8470b commit d200080
Showing 1 changed file with 9 additions and 11 deletions.
20 changes: 9 additions & 11 deletions data-science-at-the-command-line/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Data Science at the Command Line

FROM alpine:3.6
FROM alpine:3.8
LABEL maintainer "Jeroen Janssens <jeroen@datascienceworkshops.com>"

RUN apk update
Expand Down Expand Up @@ -93,15 +93,6 @@ RUN npm install -g \
cowsay \
xml2json-command

# data science at the command line tools, book content, and example data

RUN cd /tmp && \
git clone https://github.com/jeroenjanssens/data-science-at-the-command-line.git && \
cp -v data-science-at-the-command-line/tools/* /usr/bin/ && \
mkdir /home/data && cp -rv data-science-at-the-command-line/data/* /home/data && \
mkdir /home/book && cp -rv data-science-at-the-command-line/book/* /home/book


# tapkee
RUN curl -sL http://bitbucket.org/eigen/eigen/get/3.2.9.tar.gz > /tmp/eigen.tar.gz && \
cd \tmp && \
Expand Down Expand Up @@ -192,6 +183,14 @@ RUN cd /tmp && \
make install


# data science at the command line tools, book content, and example data
RUN cd /tmp && \
git clone https://github.com/jeroenjanssens/data-science-at-the-command-line.git && \
cp -v data-science-at-the-command-line/tools/* /usr/bin/ && \
cp -rv data-science-at-the-command-line/data /home/ && \
cp -rv data-science-at-the-command-line/book /home/


RUN rm -rf /tmp/* /var/cache/apk/*

RUN echo "export PAGER='less'" >>~/.bashrc && \
Expand All @@ -204,4 +203,3 @@ RUN cat $(which weka) | sed -ne '/WEKAPATH=/,/complete /p' | cut -c3- | sed -e '

WORKDIR /data
CMD bash

0 comments on commit d200080

Please sign in to comment.