Skip to content

Commit

Permalink
'find' command is missing in the 4.5.0 docker image #242 (#243)
Browse files Browse the repository at this point in the history
  • Loading branch information
samene authored Jul 22, 2022
1 parent 73f2d5f commit 99cca97
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions opendj-packages/opendj-docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ ARG VERSION=@project_version@
WORKDIR /opt

RUN microdnf upgrade --nodocs \
&& microdnf install --nodocs curl unzip \
&& microdnf install --nodocs curl unzip findutils \
&& curl -L https://github.com/OpenIdentityPlatform/OpenDJ/releases/download/$VERSION/opendj-$VERSION.zip --output opendj-$VERSION.zip \
&& unzip opendj-$VERSION.zip \
&& microdnf remove unzip \
Expand All @@ -44,4 +44,4 @@ USER $OPENDJ_USER

HEALTHCHECK --interval=30s --timeout=30s --start-period=1s --retries=3 CMD opendj/bin/ldapsearch --hostname localhost --port 1636 --bindDN "$ROOT_USER_DN" --bindPassword $ROOT_PASSWORD --useSsl --trustAll --baseDN "$BASE_DN" --searchScope base "(objectClass=*)" 1.1 || exit 1

ENTRYPOINT ["/opt/opendj/run.sh"]
ENTRYPOINT ["/opt/opendj/run.sh"]

0 comments on commit 99cca97

Please sign in to comment.