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 <snyk-bot@snyk.io>
This commit is contained in:
Pere Miquel Brull 2023-07-30 11:22:37 +02:00 committed by GitHub
parent b007b5e210
commit 04777121a0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,7 +10,7 @@
# limitations under the License. # limitations under the License.
# Build stage # Build stage
FROM alpine:3.15 AS build FROM alpine:3.16 AS build
COPY openmetadata-dist/target/openmetadata-*.tar.gz / COPY openmetadata-dist/target/openmetadata-*.tar.gz /
@ -19,7 +19,7 @@ RUN mkdir -p /opt/openmetadata && \
rm openmetadata-*.tar.gz rm openmetadata-*.tar.gz
# Final stage # Final stage
FROM alpine:3.15 FROM alpine:3.16
EXPOSE 8585 EXPOSE 8585