Skip to content

Commit daf58c4

Browse files
authored
Merge pull request #1 from HBClab/add_circleci_packages
add circleci dependencies
2 parents 22d0ef7 + 074dddd commit daf58c4

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed

Dockerfile

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,20 @@ USER root
55
ENV DEBIAN_FRONTEND=noninteractive
66

77
RUN apt-get update \
8-
&& apt-get -y install curl \
9-
&& chmod 777 /opt \
10-
&& apt install -y r-base \
11-
&& apt-get install -y libssl-dev \
12-
&& apt-get install -y libcurl4-gnutls-dev \
8+
&& apt-get -y install \
9+
curl \
10+
r-base \
11+
libssl-dev \
12+
libcurl4-gnutls-dev \
13+
ssh \
14+
git \
15+
tar \
16+
gzip \
17+
ca-certificates \
1318
&& R -e "install.packages(c('rsconnect', 'shiny', 'DT', 'dplyr', 'markdown', 'ggplot2'))"
1419

20+
RUN chmod 777 /opt
21+
1522
ENV PATH="/opt/miniconda-latest/bin:$PATH"
1623

1724
RUN useradd --create-home --shell /bin/bash coder

0 commit comments

Comments
 (0)