Skip to content

Commit 587b9f1

Browse files
committed
chore(passport): space instead of tab
1 parent 09ac302 commit 587b9f1

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

rootfs/Dockerfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ RUN apk add --update --virtual .build-deps \
2222
&& python3 -m venv /app/.venv \
2323
&& source /app/.venv/bin/activate \
2424
&& pip3 install --disable-pip-version-check --no-cache-dir -r /app/requirements.txt \
25-
&& find /app/.venv/lib/ -type f -executable ! -path '*/cryptography*' -exec scanelf --needed --nobanner --format '%n#p' '{}' ';' \
26-
| tr ',' '\n' \
27-
| sort -u \
28-
| awk 'system("[ -e /app/.venv/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' \
29-
| xargs -rt apk add --no-cache --virtual .python-rundeps \
25+
&& find /app/.venv/lib/ -type f -executable ! -path '*/cryptography*' -exec scanelf --needed --nobanner --format '%n#p' '{}' ';' \
26+
| tr ',' '\n' \
27+
| sort -u \
28+
| awk 'system("[ -e /app/.venv/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' \
29+
| xargs -rt apk add --no-cache --virtual .python-rundeps \
3030
&& apk add --update --virtual .passport-rundeps \
3131
ca-certificates \
3232
su-exec \

rootfs/Dockerfile.test

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ RUN echo https://dl-cdn.alpinelinux.org/alpine/edge/main >>/etc/apk/repositories
2121
&& source /app/.venv/bin/activate \
2222
&& pip3 install --disable-pip-version-check --no-cache-dir -r /app/requirements.txt \
2323
&& pip3 install --disable-pip-version-check --no-cache-dir -r /app/dev_requirements.txt \
24-
&& find /app/.venv/lib/ -type f -executable ! -path '*/cryptography*' -exec scanelf --needed --nobanner --format '%n#p' '{}' ';' \
25-
| tr ',' '\n' \
26-
| sort -u \
27-
| awk 'system("[ -e /app/.venv/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' \
28-
| xargs -rt apk add --no-cache --virtual .python-rundeps \
24+
&& find /app/.venv/lib/ -type f -executable ! -path '*/cryptography*' -exec scanelf --needed --nobanner --format '%n#p' '{}' ';' \
25+
| tr ',' '\n' \
26+
| sort -u \
27+
| awk 'system("[ -e /app/.venv/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' \
28+
| xargs -rt apk add --no-cache --virtual .python-rundeps \
2929
&& apk add --update --virtual .passport-rundeps \
3030
gcc \
3131
git \

0 commit comments

Comments
 (0)