We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 628fbb3 commit 899562dCopy full SHA for 899562d
Dockerfile
@@ -1,7 +1,14 @@
1
FROM r-base:4.1.0
2
MAINTAINER Disease Transcriptomics Lab <imm-nmorais@medicina.ulisboa.pt>
3
4
-RUN apt-get update && apt-get -y upgrade && apt-get -y autoremove
+RUN apt-get update && \
5
+ apt-get -y install --no-install-recommends \
6
+ curl \
7
+ git \
8
+ build-essential && \
9
+ apt-get -y autoremove && \
10
+ apt-get clean && \
11
+ rm -rf /var/lib/apt/lists/*
12
RUN apt-get install -y curl
13
RUN apt-get install -y libcurl4-openssl-dev
14
RUN apt-get install -y libssl-dev
0 commit comments