mirror of
https://github.com/mailcow/mailcow-dockerized.git
synced 2024-12-14 10:52:49 +02:00
10 lines
218 B
Docker
10 lines
218 B
Docker
FROM solr:7-alpine
|
|
USER root
|
|
COPY docker-entrypoint.sh /
|
|
|
|
RUN apk --no-cache add su-exec curl tzdata \
|
|
&& chmod +x /docker-entrypoint.sh \
|
|
&& /docker-entrypoint.sh --bootstrap
|
|
|
|
ENTRYPOINT ["/docker-entrypoint.sh"]
|