Update omd-server's base image to alpine:3.18.5 (#14199)

* Update server's base image to alpine:3.18.5

* Update server's base image tags

---------

Co-authored-by: Sriharsha Chintalapani <harshach@users.noreply.github.com>
This commit is contained in:
Preet Shah 2023-12-04 14:54:22 +05:30 committed by GitHub
parent 389ae79d3c
commit 597c49985e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

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

View File

@ -10,7 +10,7 @@
# limitations under the License.
# Build stage
FROM alpine:3 AS build
FROM alpine:3.18 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
FROM alpine:3.18
ARG RI_VERSION="1.3.0-SNAPSHOT"
ARG BUILD_DATE
ARG COMMIT_ID