Skip to content

Instantly share code, notes, and snippets.

View ggpinto's full-sized avatar

Guilherme Pinto ggpinto

  • Germany
View GitHub Profile
@ggpinto
ggpinto / Dockerfile
Created January 31, 2022 10:25
Dockerfile for rocker/tidyverse:4.1.2 with Microsoft SQL Server
FROM rocker/tidyverse:4.1.2
# making sure that all packages will be versioned
RUN R -e "options(repos = list(CRAN = 'https://mran.microsoft.com/snapshot/2022-01-30'))"
# install some packages needed for odbc
RUN apt-get update && apt-get install -y \
curl \
apt-utils \
apt-transport-https \