From 390e731eb42e8b1757cefd0b302d20bc83e049a9 Mon Sep 17 00:00:00 2001 From: Sriharsha Chintalapani Date: Sun, 28 Jan 2024 10:27:34 -0800 Subject: [PATCH] fix: docker/docker-compose-quickstart/Dockerfile to reduce vulnerabilities (#14862) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-ALPINE318-OPENSSL-6152404 - https://snyk.io/vuln/SNYK-ALPINE318-OPENSSL-6152404 - https://snyk.io/vuln/SNYK-ALPINE318-OPENSSL-6160000 - https://snyk.io/vuln/SNYK-ALPINE318-OPENSSL-6160000 Co-authored-by: snyk-bot --- docker/docker-compose-quickstart/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/docker-compose-quickstart/Dockerfile b/docker/docker-compose-quickstart/Dockerfile index 19d8343326c..579faf92f91 100644 --- a/docker/docker-compose-quickstart/Dockerfile +++ b/docker/docker-compose-quickstart/Dockerfile @@ -10,7 +10,7 @@ # limitations under the License. # Build stage -FROM alpine:3.18 AS build +FROM alpine:3 AS build ARG RI_VERSION="1.3.0-SNAPSHOT" ENV RELEASE_URL="https://github.com/open-metadata/OpenMetadata/releases/download/${RI_VERSION}-release/openmetadata-${RI_VERSION}.tar.gz" @@ -20,7 +20,7 @@ RUN mkdir -p /opt/openmetadata && \ rm openmetadata-*.tar.gz # Final stage -FROM alpine:3.18 +FROM alpine:3 ARG RI_VERSION="1.3.0-SNAPSHOT" ARG BUILD_DATE ARG COMMIT_ID