zimit/Dockerfile
renaud gaudin 568068ecfc WARC2zim version update
- updated to latest warc2zim release
- fixed param name typo in README
- added creation of `/output` so container can run on default params even if /output
is not a mounted volume
2020-11-10 08:26:56 +00:00

14 lines
190 B
Docker

FROM webrecorder/browsertrix-crawler:0.1.1
RUN mkdir -p /output
WORKDIR /app
RUN pip install 'warc2zim>=1.3.1'
ADD zimit.py /app/
RUN ln -s /app/zimit.py /usr/bin/zimit
CMD ["zimit"]