This repository was archived by the owner on Nov 30, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +14
-4
lines changed
containers/R/.devcontainer Expand file tree Collapse file tree 2 files changed +14
-4
lines changed Original file line number Diff line number Diff line change 3
3
# Licensed under the MIT License. See https://go.microsoft.com/fwlink/?linkid=2090316 for license information.
4
4
# -------------------------------------------------------------------------------------------------------------
5
5
6
- FROM r-base:3.6.0
6
+ FROM rocker/r-apt:bionic
7
7
8
- # Install git, process tools, lsb-release (common in install instructions for CLIs) and GPG
9
- RUN apt-get update && apt-get -y install git procps lsb-release
8
+ # Install git, process tools, lsb-release (common in install instructions for CLIs) and libzip for R Tools extension
9
+ RUN apt-get update && apt-get -y install git procps lsb-release libzip-dev
10
10
11
+ # Register Microsoft key and feed
12
+ RUN wget -q https://packages.microsoft.com/config/ubuntu/18.04/packages-microsoft-prod.deb && \
13
+ dpkg -i packages-microsoft-prod.deb
14
+
15
+ # Install the .NET Runtime
16
+ RUN add-apt-repository universe && \
17
+ apt-get install apt-transport-https && \
18
+ apt-get update && \
19
+ apt-get -y install dotnet-runtime-2.1
11
20
12
21
# Clean up
13
22
RUN apt-get autoremove -y \
Original file line number Diff line number Diff line change 15
15
"postCreateCommand" : " R --version" ,
16
16
17
17
"extensions" : [
18
- " ikuyadeu.r"
18
+ " ikuyadeu.r" ,
19
+ " mikhail-arkhipov.r"
19
20
]
20
21
}
You can’t perform that action at this time.
0 commit comments