forked from rstudio/r-system-requirements
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/main'
- Loading branch information
Showing
20 changed files
with
204 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM alpine:3.16 | ||
FROM alpine:3.20 | ||
|
||
RUN apk update && \ | ||
apk add curl bash | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
FROM opensuse/leap:15.6 | ||
|
||
# Use mirrorcache as openSUSE 15.6 mirrors seem particularly unreliable | ||
RUN sed -i 's|http://download.opensuse.org|https://mirrorcache.opensuse.org|g' /etc/zypp/repos.d/*.repo | ||
|
||
RUN zypper --quiet --non-interactive update && \ | ||
zypper --non-interactive install curl | ||
|
||
# Install jq | ||
RUN curl -fsSL -o /usr/local/bin/jq https://github.com/stedolan/jq/releases/download/jq-1.7/jq-linux64 && \ | ||
chmod +x /usr/local/bin/jq |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
{ | ||
"patterns": ["\\blibzstd\\b"], | ||
"dependencies": [ | ||
{ | ||
"packages": ["libzstd-dev"], | ||
"constraints": [ | ||
{ | ||
"os": "linux", | ||
"distribution": "ubuntu" | ||
}, | ||
{ | ||
"os": "linux", | ||
"distribution": "debian" | ||
} | ||
] | ||
}, | ||
{ | ||
"pre_install": [ | ||
{ | ||
"command": "rpm -q epel-release || yum install -y epel-release" | ||
} | ||
], | ||
"packages": [ "libzstd-devel" ], | ||
"constraints": [ | ||
{ | ||
"os": "linux", | ||
"distribution": "centos", | ||
"versions": [ "7"] | ||
} | ||
] | ||
}, | ||
{ | ||
"packages": ["libzstd-devel"], | ||
"pre_install": [ | ||
{ | ||
"command": "rpm -q epel-release || yum install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm" | ||
} | ||
], | ||
"constraints": [ | ||
{ | ||
"os": "linux", | ||
"distribution": "redhat", | ||
"versions": ["7"] | ||
} | ||
] | ||
}, | ||
{ | ||
"packages": ["libzstd-devel"], | ||
"constraints": [ | ||
{ | ||
"os": "linux", | ||
"distribution": "rockylinux" | ||
}, | ||
{ | ||
"os": "linux", | ||
"distribution": "redhat", | ||
"versions": [ "8", "9" ] | ||
}, | ||
{ | ||
"os": "linux", | ||
"distribution": "fedora" | ||
}, | ||
{ | ||
"os": "linux", | ||
"distribution": "opensuse" | ||
}, | ||
{ | ||
"os": "linux", | ||
"distribution": "sle" | ||
} | ||
] | ||
}, | ||
{ | ||
"packages": ["zstd-dev"], | ||
"constraints": [ | ||
{ | ||
"os": "linux", | ||
"distribution": "alpine" | ||
} | ||
] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.