summaryrefslogtreecommitdiff
path: root/docker/Dockerfile.alpine
diff options
context:
space:
mode:
authorMichael Peter Christen <mc@yacy.net>2026-07-05 12:04:42 +0200
committerMichael Peter Christen <mc@yacy.net>2026-07-05 12:04:42 +0200
commit35a1d85f8b7f34e3bcc45d30333a93383cb13493 (patch)
tree274bd072de827493d5452f60b9005599b0423770 /docker/Dockerfile.alpine
parent9e5958ab0e180a64d82490c6459510e6fe695c85 (diff)
removed the snapshot feature and all dependencies from non-java code
Diffstat (limited to 'docker/Dockerfile.alpine')
-rw-r--r--docker/Dockerfile.alpine12
1 files changed, 0 insertions, 12 deletions
diff --git a/docker/Dockerfile.alpine b/docker/Dockerfile.alpine
index eb3882eb5..220ac78d4 100644
--- a/docker/Dockerfile.alpine
+++ b/docker/Dockerfile.alpine
@@ -27,18 +27,9 @@ RUN sed -i "/adminAccountBase64MD5=/c\adminAccountBase64MD5=MD5:8cffbc0d66567a09
sed -i "/server.https=false/c\server.https=true" /opt/yacy_search_server/defaults/yacy.init
## build final image
-FROM surnet/alpine-wkhtmltopdf:3.21.2-0.12.6-small AS wkhtmltopdf
FROM eclipse-temurin:21-jre-alpine-3.21 AS app
RUN apk add --no-cache \
- imagemagick \
- xvfb \
- ghostscript \
- # Install dependencies for wkhtmltopdf
- libstdc++ \
- libx11 \
- libxrender \
- libxext \
libssl3 \
ca-certificates \
fontconfig \
@@ -57,9 +48,6 @@ RUN apk add --no-cache \
&& rm -rf /tmp/* \
&& apk del .build-deps
-# Copy wkhtmltopdf files from docker-wkhtmltopdf image
-COPY --from=wkhtmltopdf /bin/wkhtmltopdf /bin/wkhtmltopdf
-
# copy YaCy to app image
RUN addgroup yacy && adduser -S -G yacy -H -D yacy
WORKDIR /opt