Dockerfile: Remove unnecessary layer

This commit is contained in:
Einar Forselv 2019-12-04 00:50:05 +01:00
parent f4c2cf9bb7
commit c78d208e66
1 changed files with 1 additions and 2 deletions

View File

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