Skip to content

Commit

Permalink
Update omd-server's base image to alpine:3.18.5 (#14199)
Browse files Browse the repository at this point in the history
* 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>
  • Loading branch information
preetsshah and harshach authored Dec 4, 2023
1 parent 389ae79 commit 597c499
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docker/development/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 /

Expand All @@ -19,7 +19,7 @@ RUN mkdir -p /opt/openmetadata && \
rm openmetadata-*.tar.gz

# Final stage
FROM alpine:3
FROM alpine:3.18

EXPOSE 8585

Expand Down
4 changes: 2 additions & 2 deletions docker/docker-compose-quickstart/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand All @@ -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
Expand Down

0 comments on commit 597c499

Please sign in to comment.