From 15a8a45e2b30f5e9e1b60ead9b9dce68f7cc14b8 Mon Sep 17 00:00:00 2001 From: Tobias Trabelsi Date: Sat, 2 Oct 2021 16:03:26 +0200 Subject: [PATCH] do not rely on cache --- alpine-3/Dockerfile | 2 +- arch/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/alpine-3/Dockerfile b/alpine-3/Dockerfile index cbca616..b421d05 100644 --- a/alpine-3/Dockerfile +++ b/alpine-3/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3 +FROM alpine:3.14 RUN apk add --no-cache ansible curl \ && curl -L https://github.com/aelsabbahy/goss/releases/latest/download/goss-linux-amd64 -o /usr/local/bin/goss \ diff --git a/arch/Dockerfile b/arch/Dockerfile index 7e2ce39..3205836 100644 --- a/arch/Dockerfile +++ b/arch/Dockerfile @@ -1,4 +1,4 @@ -FROM archlinux +FROM archlinux:latest RUN pacman -Syuu --noconfirm && pacman -S python python2 ansible sshpass git python-passlib python-netaddr curl --noconfirm \ && curl -L https://github.com/aelsabbahy/goss/releases/latest/download/goss-linux-amd64 -o /usr/local/bin/goss \