Parent Directory
|
Revision Log
Rename dockerfiles
| 1 | FROM solr:9.10 AS base |
| 2 | |
| 3 | # Start from the official Solr slim image |
| 4 | FROM solr:9.10-slim |
| 5 | |
| 6 | # Copy the composer binary from the installer stage into your final image |
| 7 | COPY --from=base /opt/solr/modules/analysis-extras/lib/lucene-analysis-smartcn-*.jar /opt/solr/modules/analysis-extras/lib/ |
| 8 | |
| 9 | # Copy custom Solr configuration |
| 10 | COPY ./solr-config /opt/solr/server/solr/configsets/lbbs |
| 11 | |
| 12 | # Set environment variable to enable config library |
| 13 | ENV SOLR_CONFIG_LIB_ENABLED="true" |
| webmaster@leafok.com | ViewVC Help |
| Powered by ViewVC 1.3.0-beta1 |