Skip to content
Snippets Groups Projects

Docker dependencies

Merged Dominik Brilhaus requested to merge docker-dependencies into main
3 files
+ 18
4
Compare changes
  • Side-by-side
  • Inline
Files
3
+ 13
0
# Use an official R base image
FROM rocker/shiny:4.4
# Install R packages
RUN R -q -e 'install.packages("ggplot2")'
EXPOSE 3838
# Set the working directory to /app
WORKDIR /app
# Default command to run when the container starts
CMD ["R"]
Loading