From d7a47e6e7734cf3775265b02baf97639cdda7e66 Mon Sep 17 00:00:00 2001 From: cytopia Date: Fri, 2 Dec 2022 01:58:47 +0100 Subject: [PATCH] Use Alpine 3.16 --- Dockerfiles/Dockerfile.latest | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfiles/Dockerfile.latest b/Dockerfiles/Dockerfile.latest index 060f350..50beeaa 100644 --- a/Dockerfiles/Dockerfile.latest +++ b/Dockerfiles/Dockerfile.latest @@ -1,4 +1,4 @@ -FROM alpine:latest as builder +FROM alpine:3.16 as builder RUN set -eux \ && apk add --no-cache \ @@ -42,7 +42,7 @@ RUN set -eux \ && find /usr/local/lib/node_modules -type f -iname '*.ts' -exec rm {} \; \ && find /usr/local/lib/node_modules -type f -iname '*.yml' -exec rm {} \; -FROM alpine:latest +FROM alpine:3.16 LABEL \ maintainer="cytopia " \ repo="https://github.com/cytopia/docker-eslint"