We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c933832 commit ac5912fCopy full SHA for ac5912f
1 file changed
Dockerfile-linux.template
@@ -114,12 +114,9 @@ RUN set -eux; \
114
# example configuration
115
RUN set -eux; \
116
python -c 'import urllib.request; urllib.request.urlretrieve("https://github.com/IdentityPython/SATOSA/archive/refs/tags/v'${SATOSA_VERSION%%[a-z]*}'.tar.gz","/tmp/satosa.tgz")'; \
117
- mkdir /tmp/satosa; \
118
- tar --extract --directory /tmp/satosa --strip-components=1 --file /tmp/satosa.tgz; \
119
- rm /tmp/satosa.tgz; \
120
- mkdir -p /usr/share/satosa; \
121
- cp -a /tmp/satosa/example /usr/share/satosa; \
122
- rm -rf /tmp/satosa
+ mkdir /usr/share/satosa; \
+ tar --extract --directory /usr/share/satosa --strip-components=1 --file /tmp/satosa.tgz SATOSA-${SATOSA_VERSION%%[a-z]*}/example/; \
+ rm /tmp/satosa.tgz
123
124
WORKDIR /etc/satosa
125
0 commit comments