FROM rocker/r-base:4.2.3
LABEL AUTHOR="Alia Rifki"
LABEL MAINTAINER="Xavier Grand <xavier.grand@inserm.fr>"
LABEL build_date="2023-05-26"

## Copy all Rscript files
COPY ./*.R .

## Install packages
RUN Rscript Install_packages.R

RUN apt-get update && apt-get install -y procps

## Langage
CMD ["bash"]