diff options
| author | Mister_X <MisterX2000@users.noreply.github.com> | 2025-04-06 01:56:09 +0200 |
|---|---|---|
| committer | Mister_X <MisterX2000@users.noreply.github.com> | 2025-04-06 01:56:09 +0200 |
| commit | d2b863a3a4c2377812aff7aa7edf845bc0291cfc (patch) | |
| tree | 5b817305cb7b7682a627287d588f14e068c44600 /docker | |
| parent | 72413a67c0dc3a25a29d50efc2a3ff5cb06599a2 (diff) | |
test dockerfile
Diffstat (limited to 'docker')
| -rw-r--r-- | docker/Dockerfile | 38 |
1 files changed, 17 insertions, 21 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile index 968584c1a..ec886b8c3 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -6,42 +6,38 @@ # run with # docker run -d --name yacy -p 8090:8090 -p 8443:8443 -v yacy_data:/opt/yacy_search_server/DATA --log-opt max-size=200m --log-opt max-file=2 yacy/yacy_search_server:latest -## build base -FROM eclipse-temurin:21 AS base -RUN apt-get update && apt-get install -yq wkhtmltopdf imagemagick xvfb ghostscript && rm -rf /var/lib/apt/lists/* - -## build app -FROM base AS appbuilder - -RUN apt-get update && apt-get install -yq ant git curl && rm -rf /var/lib/apt/lists/* -RUN java -version +## build +FROM eclipse-temurin:21 AS builder +RUN apt-get update && apt-get install -y --no-install-recommends \ + ant \ + git \ + curl \ + && rm -rf /var/lib/apt/lists/* WORKDIR /opt COPY . /opt/yacy_search_server/ -RUN ant compile -f /opt/yacy_search_server/build.xml && \ - apt-get purge -yq --auto-remove ant && \ - apt-get clean && \ - rm -rf /var/lib/apt/lists/* - -WORKDIR /opt/yacy_search_server/ -#RUN git rev-parse HEAD > .git/shallow && \ -# git tag -l | xargs git tag -d && \ -# git gc --prune=now +RUN ant compile -f /opt/yacy_search_server/build.xml # Set initial admin password: "yacy" (encoded with custom yacy md5 function net.yacy.cora.order.Digest.encodeMD5Hex()) RUN sed -i "/adminAccountBase64MD5=/c\adminAccountBase64MD5=MD5:8cffbc0d66567a0987a4aba1ec46d63c" /opt/yacy_search_server/defaults/yacy.init && \ sed -i "/adminAccountForLocalhost=/c\adminAccountForLocalhost=false" /opt/yacy_search_server/defaults/yacy.init && \ sed -i "/server.https=false/c\server.https=true" /opt/yacy_search_server/defaults/yacy.init +## build final image +FROM eclipse-temurin:21-jre AS app + +RUN apt-get update && apt-get install -y --no-install-recommends \ + wkhtmltopdf \ + xvfb \ + ghostscript \ + && rm -rf /var/lib/apt/lists/* -## build dist -FROM base LABEL maintainer="Michael Peter Christen <mc@yacy.net>" RUN adduser --system --group --no-create-home --disabled-password yacy WORKDIR /opt -COPY --chown=yacy:yacy --from=appbuilder /opt/yacy_search_server /opt/yacy_search_server +COPY --chown=yacy:yacy --from=builder /opt/yacy_search_server /opt/yacy_search_server EXPOSE 8090 8443 VOLUME ["/opt/yacy_search_server/DATA"] |
