Skip to content

Commit

Permalink
Merge pull request #834 from uselagoon/renovate/main-opensearchprojec…
Browse files Browse the repository at this point in the history
…t-opensearch-2.x

Update opensearchproject/opensearch Docker tag to v2.10.0 (main)
  • Loading branch information
tobybellwood authored Oct 3, 2023
2 parents 2cb80ea + b6688c9 commit 9f55b51
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion images/opensearch/2.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG IMAGE_REPO
FROM ${IMAGE_REPO:-lagoon}/commons as commons
FROM opensearchproject/opensearch:2.9.0
FROM opensearchproject/opensearch:2.10.0

LABEL org.opencontainers.image.authors="The Lagoon Authors" maintainer="The Lagoon Authors"
LABEL org.opencontainers.image.source="https://github.com/uselagoon/lagoon-images" repository="https://github.com/uselagoon/lagoon-images"
Expand All @@ -17,6 +17,8 @@ COPY --from=commons /home /home

USER root

RUN dnf update --releasever=latest -y && dnf install -y findutils && dnf clean all

RUN architecture=$(case $(uname -m) in x86_64 | amd64) echo "amd64" ;; aarch64 | arm64 | armv8) echo "arm64" ;; *) echo "amd64" ;; esac) \
&& curl -sL https://github.com/krallin/tini/releases/download/v0.19.0/tini-${architecture} -o /usr/sbin/tini && chmod a+x /usr/sbin/tini

Expand Down

0 comments on commit 9f55b51

Please sign in to comment.