fix: docker/development/Dockerfile to reduce vulnerabilities (#16855)

The following vulnerabilities are fixed with an upgrade:
- https://snyk.io/vuln/SNYK-ALPINE319-OPENSSL-7413523
- https://snyk.io/vuln/SNYK-ALPINE319-OPENSSL-7413523
- https://snyk.io/vuln/SNYK-ALPINE319-OPENSSL-7413527
- https://snyk.io/vuln/SNYK-ALPINE319-OPENSSL-7413527

Co-authored-by: snyk-bot <snyk-bot@snyk.io>
This commit is contained in:
Sriharsha Chintalapani 2024-07-31 08:56:51 -07:00 committed by GitHub
parent f5f9843c15
commit ed2115067a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -10,7 +10,7 @@
# limitations under the License.
# Build stage
FROM alpine:3.19 AS build
FROM alpine:3 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.19
FROM alpine:3
EXPOSE 8585