os: vuls: Add CentOS 8 support
[validation.git] / docker / sonobuoy-plugin-systemd-logs / patches / aarch64 / 0001-Dockerfile-AArch64-support.patch
1 From: Alexandru Avadanii <Alexandru.Avadanii@enea.com>
2 Date: Tue, 25 Jun 2019 17:45:29 +0200
3 Subject: [PATCH] Dockerfile: AArch64 support
4
5 Signed-off-by: Alexandru Avadanii <Alexandru.Avadanii@enea.com>
6 ---
7  Dockerfile | 6 ++++--
8  1 file changed, 4 insertions(+), 2 deletions(-)
9
10 diff --git a/Dockerfile b/Dockerfile
11 index 06d872c..687d541 100644
12 --- a/Dockerfile
13 +++ b/Dockerfile
14 @@ -13,10 +13,12 @@
15  # See the License for the specific language governing permissions and
16  # limitations under the License.
17
18 -FROM buildpack-deps:jessie-scm
19 +FROM arm64v8/buildpack-deps:jessie-scm
20  MAINTAINER Ken Simon "ken@heptio.com"
21
22 -RUN apt-get update && apt-get -y --no-install-recommends install \
23 +RUN echo 'Acquire::Check-Valid-Until "0";' > /etc/apt/apt.conf.d/10no--check-valid-until \
24 +    && sed -i -e '/security/s/^/#/g' -e 's|deb.debian.org/debian|snapshot.debian.org/archive/debian/20190301T035241Z|g' /etc/apt/sources.list \
25 +    && apt-get update && apt-get -y --no-install-recommends install \
26      ca-certificates \
27      && rm -rf /var/cache/apt/* \
28      && rm -rf /var/lib/apt/lists/*