From 04777121a0a448f8d1e6ee1cd9c6463f19564d96 Mon Sep 17 00:00:00 2001 From: Pere Miquel Brull Date: Sun, 30 Jul 2023 11:22:37 +0200 Subject: [PATCH] fix: docker/development/Dockerfile to reduce vulnerabilities (#12657) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-ALPINE315-OPENSSL-5788364 - https://snyk.io/vuln/SNYK-ALPINE315-OPENSSL-5788364 Co-authored-by: snyk-bot --- docker/development/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/development/Dockerfile b/docker/development/Dockerfile index 943cff68783..3552b1509d1 100644 --- a/docker/development/Dockerfile +++ b/docker/development/Dockerfile @@ -10,7 +10,7 @@ # limitations under the License. # Build stage -FROM alpine:3.15 AS build +FROM alpine:3.16 AS build COPY openmetadata-dist/target/openmetadata-*.tar.gz / @@ -19,7 +19,7 @@ RUN mkdir -p /opt/openmetadata && \ rm openmetadata-*.tar.gz # Final stage -FROM alpine:3.15 +FROM alpine:3.16 EXPOSE 8585