Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
vidjil
vidjil
Commits
28f3270d
Commit
28f3270d
authored
Nov 13, 2020
by
Mathieu Giraud
Browse files
Merge branch 'feature-s/retry-gpg' into 'dev'
Retry GPG Closes
#3610
See merge request
!844
parents
ec8c3a62
4678261b
Pipeline
#187743
passed with stages
in 12 minutes and 30 seconds
Changes
1
Pipelines
3
Hide whitespace changes
Inline
Side-by-side
docker/vidjil-server/Dockerfile
View file @
28f3270d
...
@@ -10,8 +10,11 @@ run set -x \
...
@@ -10,8 +10,11 @@ run set -x \
&&
wget
-O
/usr/local/bin/gosu
"https://github.com/tianon/gosu/releases/download/
$GOSU_VERSION
/gosu-
$(
dpkg
--print-architecture
)
"
\
&&
wget
-O
/usr/local/bin/gosu
"https://github.com/tianon/gosu/releases/download/
$GOSU_VERSION
/gosu-
$(
dpkg
--print-architecture
)
"
\
&&
wget
-O
/usr/local/bin/gosu.asc
"https://github.com/tianon/gosu/releases/download/
$GOSU_VERSION
/gosu-
$(
dpkg
--print-architecture
)
.asc"
\
&&
wget
-O
/usr/local/bin/gosu.asc
"https://github.com/tianon/gosu/releases/download/
$GOSU_VERSION
/gosu-
$(
dpkg
--print-architecture
)
.asc"
\
&&
export
GNUPGHOME
=
"
$(
mktemp
-d
)
"
\
&&
export
GNUPGHOME
=
"
$(
mktemp
-d
)
"
\
&&
gpg
--keyserver
ipv4.pool.sks-keyservers.net
--recv-keys
B42F6819007F00F88E364FD4036A9C25BF357DD4
\
&&
for
i
in
$(
seq
1 3
)
;
do
\
&&
gpg
--batch
--verify
/usr/local/bin/gosu.asc /usr/local/bin/gosu
\
gpg
--keyserver
ipv4.pool.sks-keyservers.net
--recv-keys
B42F6819007F00F88E364FD4036A9C25BF357DD4
\
&&
gpg
--batch
--verify
/usr/local/bin/gosu.asc /usr/local/bin/gosu
\
&&
break
||
sleep
5
;
\
done
\
&&
rm
-rf
"
$GNUPGHOME
"
/usr/local/bin/gosu.asc
\
&&
rm
-rf
"
$GNUPGHOME
"
/usr/local/bin/gosu.asc
\
&&
chmod
+x /usr/local/bin/gosu
&&
chmod
+x /usr/local/bin/gosu
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment