forked from kiwix/kiwix-tools
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.
16 lines
450 B
16 lines
450 B
FROM arm32v7/alpine:latest
|
|
LABEL maintainer Sebastian Rojo <sebastian.rojo@sapian.com.co>
|
|
|
|
# Install kiwix-serve
|
|
WORKDIR /
|
|
RUN apk add --no-cache curl bzip2
|
|
RUN curl -kL https://download.kiwix.org/release/kiwix-tools/kiwix-tools_linux-armhf-3.0.1-1.tar.gz | tar -xz && \
|
|
mv kiwix-tools*/* /usr/local/bin && \
|
|
rm -r kiwix-tools*
|
|
|
|
# Run kiwix-serve
|
|
EXPOSE 80
|
|
VOLUME /data
|
|
WORKDIR /data
|
|
ENTRYPOINT ["/usr/local/bin/kiwix-serve", "--port", "80"]
|