We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a07154e commit d5215f8Copy full SHA for d5215f8
distribution/docker/src/docker/Dockerfile.ess-fips
@@ -208,6 +208,11 @@ LABEL name="Elasticsearch" \\
208
209
RUN mkdir /licenses && ln LICENSE.txt /licenses/LICENSE
210
211
+# Generate a stub command that will be overwritten at runtime
212
+RUN mkdir /app && \\
213
+ echo -e '#!/bin/bash\\nexec /usr/local/bin/docker-entrypoint.sh eswrapper' > /app/elasticsearch.sh && \\
214
+ chmod 0555 /app/elasticsearch.sh
215
+
216
ENTRYPOINT ["/sbin/tini", "--"]
217
CMD ["/app/elasticsearch.sh"]
218
0 commit comments