15 lines
265 B
Docker
15 lines
265 B
Docker
ARG REPO_LOCATION
|
|
# ARG BASE_VERSION
|
|
|
|
FROM ${REPO_LOCATION}minideb
|
|
|
|
RUN install_packages gcc python3 python3-pip python3-setuptools \
|
|
&& pip3 install archivebox \
|
|
&& pip3 cache purge
|
|
|
|
USER 10200:10200
|
|
|
|
WORKDIR /mnt
|
|
|
|
VOLUME [ "/mnt" ]
|
|
ENTRYPOINT archivebox server
|