This file contains hidden or 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
| FROM rocker/rstudio | |
| RUN /rocker_scripts/install_tidyverse.sh | |
| RUN Rscript -e "install.packages(c('cowplot', 'poweRlaw', 'pbmcapply', 'devtools', 'tidyverse', 'data.table', 'bit64', 'nloptr', 'furrr', 'future', 'future.batchtools', 'igraph', 'caret', 'see', 'flexclust', 'ggrepel', 'tsne', 'R.utils', 'Hmisc', 'reticulate'))" | |
| RUN apt-get -y update && apt-get -y install libglpk40 | |
| RUN Rscript -e "devtools::install_github('behavioral-ds/evently')" | |
| RUN Rscript -e "evently::setup_ampl('/home/rstudio')" | |
| RUN echo "PATH=$PATH:/home/rstudio/ampl" >> /home/rstudio/.Renviron | |
| ENV LANG=C.UTF-8 LC_ALL=C.UTF-8 | |
| ENV PATH /opt/conda/bin:$PATH |
This file contains hidden or 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
| #!/usr/bin/env bash | |
| # Convenience script for setting up docker and docker-compose on Ubuntu. | |
| # Steps essentially copied and pasted from: | |
| # https://docs.docker.com/install/linux/docker-ce/ubuntu/ | |
| # https://docs.docker.com/compose/install/ | |
| # Uninstall any existing docker installations | |
| sudo apt-get remove docker docker-engine docker.io containerd runc |
This file contains hidden or 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
| #!/bin/bash | |
| # OSWorld VNC Setup Script | |
| # Run this script on a fresh Ubuntu system | |
| set -e # Exit on any error | |
| echo "=== OSWorld VNC Setup Script ===" | |
| echo "Setting up VNC and OSWorld server..." |
OlderNewer