-
-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d707fd8
commit f871075
Showing
4 changed files
with
26 additions
and
12 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,10 +8,16 @@ LABEL org.opencontainers.image.authors="Christian Loos <[email protected]>" | |
|
||
SHELL ["/bin/bash", "-o", "pipefail", "-c"] | ||
|
||
RUN gpg --keyserver keyserver.ubuntu.com --recv-keys C49B372F2BF84A19011660270DF0A283FEAC80B2 \ | ||
&& gpg --list-keys | ||
|
||
WORKDIR /usr/local/src | ||
|
||
# hadolint ignore=DL3003,SC2174 | ||
RUN curl -fsSL "https://download.bestpractical.com/pub/rt/release/rt-4.4.7.tar.gz" -o rt.tar.gz \ | ||
&& echo "47af1651d5df3f25b6374ff6c1da71c66202d61919d9431c17259fa3df69ae59 rt.tar.gz" | sha256sum -c \ | ||
RUN curl -fsSL \ | ||
-o rt.tar.gz https://download.bestpractical.com/pub/rt/release/rt-4.4.7.tar.gz \ | ||
-o rt.tar.gz.asc https://download.bestpractical.com/pub/rt/release/rt-4.4.7.tar.gz.asc \ | ||
&& gpg --verify rt.tar.gz.asc rt.tar.gz \ | ||
&& tar -xzf rt.tar.gz \ | ||
&& cd rt-4.4.7 \ | ||
&& ./configure \ | ||
|
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 |
---|---|---|
|
@@ -8,10 +8,16 @@ LABEL org.opencontainers.image.authors="Christian Loos <[email protected]>" | |
|
||
SHELL ["/bin/bash", "-o", "pipefail", "-c"] | ||
|
||
RUN gpg --keyserver keyserver.ubuntu.com --recv-keys C49B372F2BF84A19011660270DF0A283FEAC80B2 \ | ||
&& gpg --list-keys | ||
|
||
WORKDIR /usr/local/src | ||
|
||
# hadolint ignore=DL3003,SC2174 | ||
RUN curl -fsSL "https://download.bestpractical.com/pub/rt/release/rt-5.0.7.tar.gz" -o rt.tar.gz \ | ||
&& echo "1a1a4838979f08c58e67642686e4fd980e1f4ee98e144ff8a56f870f37162cce rt.tar.gz" | sha256sum -c \ | ||
RUN curl -fsSL \ | ||
-o rt.tar.gz https://download.bestpractical.com/pub/rt/release/rt-5.0.7.tar.gz \ | ||
-o rt.tar.gz.asc https://download.bestpractical.com/pub/rt/release/rt-5.0.7.tar.gz.asc \ | ||
&& gpg --verify rt.tar.gz.asc rt.tar.gz \ | ||
&& tar -xzf rt.tar.gz \ | ||
&& cd rt-5.0.7 \ | ||
&& ./configure \ | ||
|
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 |
---|---|---|
|
@@ -8,10 +8,16 @@ LABEL org.opencontainers.image.authors="Christian Loos <[email protected]>" | |
|
||
SHELL ["/bin/bash", "-o", "pipefail", "-c"] | ||
|
||
RUN gpg --keyserver keyserver.ubuntu.com --recv-keys C49B372F2BF84A19011660270DF0A283FEAC80B2 \ | ||
&& gpg --list-keys | ||
|
||
WORKDIR /usr/local/src | ||
|
||
# hadolint ignore=DL3003,SC2174 | ||
RUN curl -fsSL "https://download.bestpractical.com/pub/rt/%%RT_RELEASE%%/rt-%%RT_VERSION%%.tar.gz" -o rt.tar.gz \ | ||
&& echo "%%RT_SHA%% rt.tar.gz" | sha256sum -c \ | ||
RUN curl -fsSL \ | ||
-o rt.tar.gz https://download.bestpractical.com/pub/rt/%%RT_RELEASE%%/rt-%%RT_VERSION%%.tar.gz \ | ||
-o rt.tar.gz.asc https://download.bestpractical.com/pub/rt/%%RT_RELEASE%%/rt-%%RT_VERSION%%.tar.gz.asc \ | ||
&& gpg --verify rt.tar.gz.asc rt.tar.gz \ | ||
&& tar -xzf rt.tar.gz \ | ||
&& cd rt-%%RT_VERSION%% \ | ||
&& ./configure \ | ||
|
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