-
Notifications
You must be signed in to change notification settings - Fork 235
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3260 from infotroph/allow-depends-update
[Docker, CI] Allow building pecan/depends from pecan/depends
- Loading branch information
Showing
7 changed files
with
39 additions
and
23 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
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 |
---|---|---|
@@ -1,20 +1,12 @@ | ||
ARG R_VERSION="4.0.2" | ||
ARG R_VERSION="4.1" | ||
ARG FROM_IMAGE="rocker/tidyverse" | ||
|
||
# ---------------------------------------------------------------------- | ||
# PECAN FOR MODEL BASE IMAGE | ||
# ---------------------------------------------------------------------- | ||
FROM rocker/tidyverse:${R_VERSION} | ||
FROM ${FROM_IMAGE}:${R_VERSION} | ||
MAINTAINER Rob Kooper <[email protected]> | ||
|
||
# ---------------------------------------------------------------------- | ||
# UPDATE GIT | ||
# This is needed for stretch and github actions | ||
# ---------------------------------------------------------------------- | ||
RUN if [ "$(lsb_release -s -c)" = "stretch" ]; then \ | ||
echo 'deb http://deb.debian.org/debian stretch-backports main' >> /etc/apt/sources.list \ | ||
&& apt-get update \ | ||
&& apt-get -t stretch-backports upgrade -y git \ | ||
; fi | ||
|
||
# ---------------------------------------------------------------------- | ||
# INSTALL BINARY/LIBRARY DEPENDENCIES | ||
|