From 41672bd41d5383052feb6032df4378971301a85b Mon Sep 17 00:00:00 2001 From: sai chaithanya Date: Fri, 17 Dec 2021 10:31:39 +0530 Subject: [PATCH] fix(nfs-server): update base image of nfs-server from alpine:latest to alpine:3.14 (#130) This commit updates the base image of nfs-server from alpine:latest to alpine:3.14. Alpine 3.14 will install fixed version of nfs-utils(2.5.3) so that nfs-utils version remains unchanged on different builds. Signed-off-by: mittachaitu --- nfs-server-container/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nfs-server-container/Dockerfile b/nfs-server-container/Dockerfile index 65aade3..e8582cb 100644 --- a/nfs-server-container/Dockerfile +++ b/nfs-server-container/Dockerfile @@ -9,7 +9,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM alpine:latest +FROM alpine:3.14 #LABEL maintainer "Steven Iveson " #LABEL source "https://github.com/sjiveson/nfs-server-alpine" #LABEL branch "master"