archivist/Dockerfile

19 lines
256 B
Text
Raw Normal View History

2021-09-27 21:30:41 +00:00
FROM fedora:34
2020-04-08 18:31:26 +00:00
2021-09-27 21:30:41 +00:00
RUN dnf install -y python3-pip which \
&& dnf clean all \
&& pip3 install pipenv
2020-04-08 18:31:26 +00:00
VOLUME /backups
COPY . /archivist
RUN touch /archivist/archivist.yml
2020-04-08 18:31:26 +00:00
WORKDIR /archivist
RUN pipenv install
ENTRYPOINT ["/archivist/bin/archivist.sh"]
2020-04-08 18:31:26 +00:00