From e81b3338df9b6c00e05ab7e72a9c70facce172bc Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Wed, 24 Jul 2024 08:12:53 +0000 Subject: [PATCH] fix: images/nginx/rootfs/Dockerfile to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-ALPINE320-BUSYBOX-7233533 - https://snyk.io/vuln/SNYK-ALPINE320-BUSYBOX-7233533 - https://snyk.io/vuln/SNYK-ALPINE320-BUSYBOX-7233533 - https://snyk.io/vuln/SNYK-ALPINE320-BUSYBOX-7233586 - https://snyk.io/vuln/SNYK-ALPINE320-BUSYBOX-7233586 --- images/nginx/rootfs/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/images/nginx/rootfs/Dockerfile b/images/nginx/rootfs/Dockerfile index f3d61017e6..245bb353b1 100644 --- a/images/nginx/rootfs/Dockerfile +++ b/images/nginx/rootfs/Dockerfile @@ -11,7 +11,7 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. -FROM alpine:3.20.0 as builder +FROM alpine:3.20 as builder COPY . / @@ -21,7 +21,7 @@ RUN apk update \ && /build.sh # Use a multi-stage build -FROM alpine:3.20.0 +FROM alpine:3.20 ENV PATH=$PATH:/usr/local/luajit/bin:/usr/local/nginx/sbin:/usr/local/nginx/bin