2020-03-13 17:03:03 +01:00
|
|
|
IMAGE solr6_6.5.1-200313
|
|
|
|
FROM alpine3.11-java8_8.242.08-200313
|
2018-09-05 17:41:38 +02:00
|
|
|
|
2018-09-12 16:08:10 +02:00
|
|
|
RUN EOF
|
2018-09-05 17:41:38 +02:00
|
|
|
# Install runtime dependencies
|
|
|
|
apk --no-cache add bash lsof
|
|
|
|
|
|
|
|
# Download and install Solr
|
2019-02-26 20:24:02 +01:00
|
|
|
wget http://archive.apache.org/dist/lucene/solr/6.5.1/solr-6.5.1.tgz -O - | tar xzf - -C /opt
|
2018-09-05 17:41:38 +02:00
|
|
|
mv /opt/solr-6.5.1 /opt/solr
|
|
|
|
|
|
|
|
# Create OS user
|
|
|
|
addgroup -S -g 8983 solr
|
|
|
|
adduser -S -u 8983 -h /var/lib/solr -s /bin/false -g solr -G solr solr
|
2018-09-11 19:20:18 +02:00
|
|
|
chown -R solr:solr /opt/solr
|
2018-09-11 20:28:59 +02:00
|
|
|
|
|
|
|
# Make start/stop script visible globally (also defines directory for solr.in.sh)
|
|
|
|
ln -s /opt/solr/bin/solr /usr/bin/solr
|
2018-09-12 16:08:10 +02:00
|
|
|
EOF
|
2018-09-05 17:41:38 +02:00
|
|
|
|
2020-03-13 20:05:46 +01:00
|
|
|
COPY image.d
|
2018-09-11 20:28:59 +02:00
|
|
|
|
2020-03-13 17:03:03 +01:00
|
|
|
USER solr
|
2019-09-27 11:28:00 +02:00
|
|
|
CMD /usr/bin/solr start -f
|
2019-11-18 20:48:45 +01:00
|
|
|
READY /bin/grep -q "o.e.j.s.Server Started" /opt/solr/server/logs/solr.log
|