mirror of
https://github.com/kiwix/kiwix-tools.git
synced 2026-05-08 08:58:35 +01:00
ccb8d11dce
- added a new generic kiwix/kiwix-tools image - kiwix/kiwix-serve now based on kiwix/kiwix-tools ; with its entrypoint - both images are built with official binary distribution - both images are built on github action and pushed to both docker.io and ghcr.io - both images are multi-arch and support arm/v7, arm64 and amd64 - built on release published or workflow_dispatch event (to be triggered by kiwix-build)
15 lines
314 B
Docker
15 lines
314 B
Docker
ARG VERSION=latest
|
|
|
|
# kiwix-tools is multi-arch
|
|
FROM kiwix/kiwix-tools:$VERSION
|
|
LABEL org.opencontainers.image.source https://github.com/openzim/kiwix-tools
|
|
|
|
# expose kiwix-serve default port and workdir
|
|
EXPOSE 80
|
|
VOLUME /data
|
|
WORKDIR /data
|
|
|
|
COPY ./start.sh /usr/local/bin/
|
|
|
|
ENTRYPOINT ["/usr/local/bin/start.sh"]
|