From 6621ca1fedf496bb3e3d0641040a5e2090f89c14 Mon Sep 17 00:00:00 2001 From: Mithilesh Pawar Date: Thu, 14 Apr 2022 19:51:00 -0400 Subject: [PATCH] Using version tag insted of 'latest' in Dockerfile. --- Dockerfile | 2 +- test/integration/data/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7bdc6f9bc..670eda9e5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:latest +FROM alpine:3.15.4 RUN apk add --no-cache bash RUN adduser --system --disabled-password cxuser diff --git a/test/integration/data/Dockerfile b/test/integration/data/Dockerfile index c0a00af0f..210f972d7 100644 --- a/test/integration/data/Dockerfile +++ b/test/integration/data/Dockerfile @@ -1,6 +1,6 @@ # Example: docker build . -t dsvw && docker run -p 65412:65412 dsvw -FROM alpine:latest +FROM alpine:3.15.4 RUN apk --no-cache add git python3 py-lxml \ && rm -rf /var/cache/apk/*