-
Notifications
You must be signed in to change notification settings - Fork 14
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
358 changed files
with
161 additions
and
101,696 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
Empty file.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file.
Empty file.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file.
Empty file.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file.
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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
FROM jhudsl/course_template | ||
LABEL maintainer="cansav09@gmail.com" | ||
|
||
# Install apt-getable packages to start | ||
RUN apt-get update && apt-get install -y --no-install-recommends apt-utils dialog | ||
|
||
RUN apt-get install -y --no-install-recommends \ | ||
libxt6 \ | ||
libpoppler-cpp-dev \ | ||
vim \ | ||
libglpk40 \ | ||
curl \ | ||
gpg | ||
|
||
# Install R | ||
RUN apt-get update && apt-get install -y r-base curl | ||
|
||
# Install R packages | ||
RUN Rscript -e "install.packages('curl')" | ||
|
||
# Install phantomjs | ||
RUN apt-get update && apt-get install build-essential chrpath libssl-dev libxft-dev -y \ | ||
&& apt-get install libfontconfig1 libfontconfig1-dev -y \ | ||
&& cd ~ && export PHANTOM_JS="phantomjs-2.1.1-linux-x86_64" \ | ||
&& wget https://github.com/Medium/phantomjs/releases/download/v2.1.1/$PHANTOM_JS.tar.bz2 \ | ||
&& sudo tar xvjf $PHANTOM_JS.tar.bz2 \ | ||
&& sudo mv $PHANTOM_JS /usr/local/share \ | ||
&& sudo ln -sf /usr/local/share/$PHANTOM_JS/bin/phantomjs /usr/local/bin \ | ||
&& phantomjs --version |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.