3

I'm new to Docker and I want to create an image in orde rto deploy a shiny app that sources python scripts using "reticulate" package.

Is there a place where I can start building this Docker image or build on top of some existing images.

I Can provide the scripts that I use for this app.

M--
  • 25,431
  • 8
  • 61
  • 93
dito
  • 129
  • 1
  • 6

1 Answers1

0

Jupyter's docker-stacks repo has some good examples: https://github.com/jupyter/docker-stacks

For R: https://github.com/jupyter/docker-stacks/blob/master/r-notebook/Dockerfile

For Python/Julia/R: https://github.com/jupyter/docker-stacks/blob/master/datascience-notebook/Dockerfile

I figure these are overkill for what you need, but they might be a helpful reference

Patrick
  • 530
  • 5
  • 9