install chromium into images
This commit is contained in:
parent
51e8a8138a
commit
c0464ecba8
1 changed files with 16 additions and 0 deletions
|
|
@ -24,6 +24,11 @@ RUN apt update && apt install -y --no-install-recommends gdebi-core g++ gfortran
|
|||
# These usually are not packaged in OS repositories and need to be installed from source
|
||||
# - JAGS (needed for runjags which itself is again a dependency of many packages)
|
||||
RUN curl -q -L -O https://sourceforge.net/projects/mcmc-jags/files/JAGS/4.x/Source/JAGS-4.3.2.tar.gz && tar -xzf JAGS-4.3.2.tar.gz && cd JAGS-4.3.2 && ./configure --enable-silent-rules && make 2>&1 && make install 2>&1 >/dev/null && rm -rf JAGS-4.3.2.tar.gz JAGS-4.3.2 && cd ..
|
||||
# - Chromium should be auto-installed once pkgdepends merges the latest system-requirements rule changes
|
||||
RUN apt-get install -y software-properties-common && \
|
||||
add-apt-repository -y ppa:xtradeb/apps && \
|
||||
apt update && \
|
||||
apt install -y chromium
|
||||
|
||||
### INSTALL R
|
||||
RUN curl -O "https://devxy-r-builds.s3.eu-central-2.amazonaws.com/2204/r-${R_VERSION}_1_$(dpkg --print-architecture).deb"
|
||||
|
|
|
|||
Loading…
Reference in a new issue