2019-03-10 09:36:33 +01:00
|
|
|
FROM solr:7.7-alpine
|
2019-01-16 10:50:34 +01:00
|
|
|
USER root
|
|
|
|
COPY docker-entrypoint.sh /
|
2019-03-12 23:15:26 +01:00
|
|
|
COPY solr-config-7.7.0.xml /
|
|
|
|
COPY solr-schema-7.7.0.xml /
|
|
|
|
|
2019-01-16 10:50:34 +01:00
|
|
|
|
2019-02-08 17:03:38 +01:00
|
|
|
RUN apk --no-cache add su-exec curl tzdata \
|
2019-03-12 23:15:26 +01:00
|
|
|
&& chmod +x /docker-entrypoint.sh \
|
|
|
|
&& bash /docker-entrypoint.sh --bootstrap
|
2019-01-16 10:50:34 +01:00
|
|
|
|
|
|
|
ENTRYPOINT ["/docker-entrypoint.sh"]
|