archivist/Dockerfile
Andrew Davidson 4848fa0c0e
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
moving to alpine, fixing build closes #2
2023-08-30 22:38:33 -07:00

18 lines
255 B
Docker

FROM alpine
RUN apk add py3-pip gcc python3-dev musl-dev libgit2 libgit2-dev
RUN pip install pipenv
VOLUME /backups
COPY . /archivist
#RUN touch /archivist/archivist.yml
WORKDIR /archivist
RUN pipenv install
CMD ["/archivist/bin/archivist.sh"]