1
0
mirror of https://github.com/mailcow/mailcow-dockerized.git synced 2024-12-14 10:52:49 +02:00
mailcow-dockerized/data/Dockerfiles/solr/Dockerfile

11 lines
230 B
Docker
Raw Normal View History

FROM solr:7-alpine
USER root
COPY docker-entrypoint.sh /
2019-02-08 18:03:38 +02:00
RUN apk --no-cache add su-exec curl tzdata \
&& chmod +x /docker-entrypoint.sh \
&& sync \
&& /docker-entrypoint.sh --bootstrap
ENTRYPOINT ["/docker-entrypoint.sh"]