mirror of
https://github.com/mailcow/mailcow-dockerized.git
synced 2025-12-27 08:41:32 +00:00
10 lines
211 B
Docker
10 lines
211 B
Docker
FROM solr:7-alpine
|
|
USER root
|
|
COPY docker-entrypoint.sh /
|
|
|
|
RUN apk --no-cache add su-exec curl \
|
|
&& chmod +x /docker-entrypoint.sh \
|
|
&& /docker-entrypoint.sh --bootstrap
|
|
|
|
ENTRYPOINT ["/docker-entrypoint.sh"]
|