Skip to content

Commit 6a7047f

Browse files
committed
2021.3-dev
1 parent 638d23e commit 6a7047f

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

Dockerfile

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
1-
FROM rocker/rstudio:latest
1+
FROM b2bwebid/r-quant:2021.3
22
MAINTAINER B2B.Web.ID Data Analytics Platform Labs
3-
RUN apt update && apt install -y zlib1g-dev && apt clean
3+
ENV RSTUDIO 1.4.1717
4+
RUN apt update && apt upgrade -y && \
5+
apt install -y locales apt-utils wget libprotobuf-dev protobuf-compiler apache2 apache2-dev ssl-cert libapparmor-dev libcurl4-openssl-dev libssl-dev \
6+
libxml2-dev libssh2-1-dev libcairo2-dev xvfb xfonts-base debhelper zlib1g-dev gdebi-core git sudo && \
7+
apt clean && \
8+
localedef -i en_US -f UTF-8 en_US.UTF-8
9+
RUN wget --quiet https://download2.rstudio.org/server/bionic/amd64/rstudio-server-${RSTUDIO}-amd64.deb && \
10+
gdebi --non-interactive rstudio-server-${RSTUDIO}-amd64.deb && \
11+
rm -f rstudio-server-${RSTUDIO}-amd64.deb && \
12+
echo "server-app-armor-enabled=0" >> /etc/rstudio/rserver.conf && \
13+
apt install -f && apt clean
414
RUN Rscript --verbose -e 'update.packages(ask=F, repo="https://cran.rstudio.com")'
515
RUN Rscript --verbose -e 'install.packages(c("purrr","vctrs","dplyr","dbplyr","openssl","rvest","gargle","vroom","googlesheets4","readxl","reprex","tidyverse"))'
616
EXPOSE 8787

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
NAME = b2bwebid/rstudio-server
2-
VERSION = 2021.2
2+
VERSION = 2021.3
33

44
.PHONY: all build tag_latest release
55

0 commit comments

Comments
 (0)