mirror of
https://github.com/openzim/zimit.git
synced 2025-12-31 04:23:15 +00:00
- 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
14 lines
190 B
Docker
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"]
|
|
|