mirror of https://github.com/kiwix/kiwix-tools.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
352 B
15 lines
352 B
ARG VERSION=latest
|
|
|
|
# kiwix-tools is multi-arch
|
|
FROM ghcr.io/kiwix/kiwix-tools:$VERSION
|
|
LABEL org.opencontainers.image.source https://github.com/openzim/kiwix-tools
|
|
|
|
# expose kiwix-serve default port and workdir
|
|
EXPOSE 8080
|
|
VOLUME /data
|
|
WORKDIR /data
|
|
|
|
COPY ./start.sh /usr/local/bin/
|
|
|
|
ENTRYPOINT ["/usr/bin/dumb-init", "--", "/usr/local/bin/start.sh"]
|