Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
FROM php:8.4-cli
FROM php:8.4-cli-alpine3.20

RUN apt update && apt install libxml2-dev libcurl4-gnutls-dev --yes
RUN apk add --no-cache libxml2-dev libcurl-dev \
&& docker-php-ext-install xml curl \
&& rm -rf /var/cache/apk/*

RUN apt install vim --yes
RUN apk add --no-cache vim \
&& rm -rf /var/cache/apk/*

COPY .docker/entrypoint.sh /opt/

Expand All @@ -12,4 +15,4 @@ COPY ./ /opt/solr2

WORKDIR /opt/solr2

ENTRYPOINT ["sh","/opt/entrypoint.sh"]
ENTRYPOINT ["sh","/opt/entrypoint.sh"]
2 changes: 1 addition & 1 deletion tests/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM solr:6.3
FROM bitnami/solr:9.8.1

COPY collections collections

Expand Down