We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6760cb0 + 9d5aa32 commit b549123Copy full SHA for b549123
.devcontainer/Dockerfile
@@ -0,0 +1,15 @@
1
+FROM rocker/r-base
2
+
3
+RUN apt-get -qq update && \
4
+ apt-get install -y --no-install-recommends git
5
6
+COPY DESCRIPTION .
7
8
+RUN Rscript -e ' \
9
+ install.packages("remotes"); \
10
+ remotes::install_deps(dependencies = c( \
11
+ "Depends", \
12
+ "Imports", \
13
+ "Config/needs/development" \
14
+ )) \
15
+'
.devcontainer/devcontainer.json
@@ -0,0 +1,3 @@
+{
+ "build": { "dockerfile": "Dockerfile", "context": ".."}
+}
0 commit comments