Skip to content

Commit

Permalink
fix dockerfile after refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
poggenpower committed Jul 19, 2024
1 parent 406d66b commit c264c20
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ RUN apk fix && \
RUN pip install setuptools_scm boto3 python-gettext &&\
apk add gettext &&\
apk add -t .build-deps linux-headers python3-dev librsync-dev gcc musl-dev git &&\
pip install https://gitlab.com/duplicity/duplicity/-/archive/issue826/duplicity-issue826.tar.gz &&\
pip install https://gitlab.com/duplicity/duplicity/-/archive/dev/duplicity-dev.tar.gz &&\
apk del --purge .build-deps

RUN addgroup -S app &&\
Expand All @@ -21,7 +21,7 @@ RUN addgroup -S app &&\
~app/.gnupg && \
chown -R app:app ~app

COPY *.py backup.yml requirements.txt /opt/app/
COPY src/*.py backup.yml requirements.txt /opt/app/
RUN pip install -r /opt/app/requirements.txt&& \
chown -R root:root /opt/app && \
find /opt/app -type d -exec chmod 755 {} + && \
Expand Down

0 comments on commit c264c20

Please sign in to comment.