Skip to content

Instantly share code, notes, and snippets.

@ibombonato
ibombonato / dockerfile
Created April 14, 2017 20:48
Dockerfile for Rstudio with SQL Driver 13 and RODBC package
FROM rocker/tidyverse
RUN echo "deb http://ftp.debian.org/debian sid main" | tee -a /etc/apt/sources.list.d/sid.list
RUN apt-get update -qq && apt-get -y --no-install-recommends install \
apt-transport-https \
libssl-dev \
libsasl2-dev \
openssl \
curl \
@tori3852
tori3852 / rstudio.sh
Last active March 4, 2021 17:26
Install RStudio on Fedora
sudo dnf install -y $(curl -s https://rstudio.com/products/rstudio/download/ | grep "fedora" | grep -o "\"[^ \"]*x86_64.rpm\"" | sed "s/\"//g")