Skip to content
Snippets Groups Projects

Docker dependencies

Merged Dominik Brilhaus requested to merge docker-dependencies into main
2 files
+ 0
32
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 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