Skip to content

Instantly share code, notes, and snippets.

View davidtedfordholt's full-sized avatar

David Tedford Holt davidtedfordholt

View GitHub Profile
@davidtedfordholt
davidtedfordholt / Dockerfile
Created April 24, 2020 16:55
Simple Dockerfile for R
## Base image
FROM rocker/r-base
# Copy R scripts to container
COPY / ./
# Execute when container is BUILT:
# sudo docker build -t example_container .
RUN Rscript setup.R