mirror of
https://github.com/php/pecl-search_engine-solr.git
synced 2026-03-23 22:52:07 +01:00
16 lines
250 B
Docker
16 lines
250 B
Docker
FROM php:8.4-cli
|
|
|
|
RUN apt update && apt install libxml2-dev libcurl4-gnutls-dev --yes
|
|
|
|
RUN apt install vim --yes
|
|
|
|
COPY .docker/entrypoint.sh /opt/
|
|
|
|
RUN mkdir /opt/solr2
|
|
|
|
COPY ./ /opt/solr2
|
|
|
|
WORKDIR /opt/solr2
|
|
|
|
ENTRYPOINT ["sh","/opt/entrypoint.sh"]
|