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/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 \ |