Skip to content

Commit

Permalink
Merge pull request #4 from linuxserver/backports-fix
Browse files Browse the repository at this point in the history
Backports fix
  • Loading branch information
sparklyballs committed Sep 25, 2018
2 parents bbf3539 + b828149 commit 38317e3
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Dockerfile.aarch64
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ RUN \
tar xf \
/tmp/bazarr.tar.gz -C \
/app/bazarr --strip-components=1 && \
echo "**** fix backports warning in log ****" && \
if [ ! -e /usr/lib/python2.7/site-packages/backports/__init__.py ]; \
then \
touch /usr/lib/python2.7/site-packages/backports/__init__.py ; \
fi && \
rm -rf \
/tmp/*

Expand Down
5 changes: 5 additions & 0 deletions Dockerfile.armhf
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ RUN \
tar xf \
/tmp/bazarr.tar.gz -C \
/app/bazarr --strip-components=1 && \
echo "**** fix backports warning in log ****" && \
if [ ! -e /usr/lib/python2.7/site-packages/backports/__init__.py ]; \
then \
touch /usr/lib/python2.7/site-packages/backports/__init__.py ; \
fi && \
rm -rf \
/tmp/*

Expand Down

0 comments on commit 38317e3

Please sign in to comment.