dockerfile: develop install for now

This way code propagates during development
This commit is contained in:
Einar Forselv 2019-11-25 21:19:31 +01:00
parent fa6812ad06
commit cb0980f8ce
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ RUN apk update && apk add python3 dcron mariadb-client postgresql-client
ADD . /restic-volume-backup
WORKDIR /restic-volume-backup
RUN pip3 install -U pip setuptools
RUN python3 setup.py develop && pip3 install .
RUN pip3 install -e .
ENTRYPOINT []
CMD ["./entrypoint.sh"]