File tree 5 files changed +9
-8
lines changed
ws-daemon/seccomp-profile-installer 5 files changed +9
-8
lines changed Original file line number Diff line number Diff line change 5
5
6
6
set -euo pipefail
7
7
8
- DOCKER_VERSION=19.03.15
9
- DOCKER_COMPOSE_VERSION=1.29.2
10
- RUNC_VERSION=v1.1.0
8
+ DOCKER_VERSION=20.10.17
9
+ DOCKER_COMPOSE_VERSION=2.8.0-gitpod.0
10
+ RUNC_VERSION=v1.1.3
11
11
12
12
curl -o docker.tgz -fsSL https://download.docker.com/linux/static/stable/x86_64/docker-${DOCKER_VERSION} .tgz
13
- curl -o docker-compose -fsSL https://github.com/docker /compose/releases/download/${DOCKER_COMPOSE_VERSION} /docker-compose-Linux -x86_64
13
+ curl -o docker-compose -fsSL https://github.com/gitpod-io /compose/releases/download/${DOCKER_COMPOSE_VERSION} /docker-compose-linux -x86_64
14
14
curl -o runc -fsSL https://github.com/opencontainers/runc/releases/download/${RUNC_VERSION} /runc.amd64
Original file line number Diff line number Diff line change @@ -468,7 +468,7 @@ func needInstallRunc() bool {
468
468
return true
469
469
}
470
470
471
- return major < 1 || major == 1 && minor < 1
471
+ return major < 1 || major == 1 && minor < 3
472
472
}
473
473
474
474
func detectRuncVersion (output string ) (major , minor int , err error ) {
Original file line number Diff line number Diff line change 4
4
5
5
require (
6
6
github.com/gitpod-io/gitpod/common-go v0.0.0-00010101000000-000000000000
7
- github.com/opencontainers/runtime-spec v1.0.2
7
+ github.com/opencontainers/runtime-spec v1.0.3-0.20220601164019-72c1f0b44f79
8
8
github.com/rootless-containers/rootlesskit v1.0.1
9
9
github.com/sirupsen/logrus v1.9.0
10
10
github.com/spf13/pflag v1.0.5
Original file line number Diff line number Diff line change @@ -24,8 +24,8 @@ github.com/kr/pretty v0.2.1/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfn
24
24
github.com/kr/pty v1.1.1 /go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ =
25
25
github.com/kr/text v0.1.0 h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE =
26
26
github.com/kr/text v0.1.0 /go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI =
27
- github.com/opencontainers/runtime-spec v1.0.2 h1:UfAcuLBJB9Coz72x1hgl8O5RVzTdNiaglX6v2DM6FI0 =
28
- github.com/opencontainers/runtime-spec v1.0.2 /go.mod h1:jwyrGlmzljRJv/Fgzds9SsS/C5hL+LL3ko9hs6T5lQ0 =
27
+ github.com/opencontainers/runtime-spec v1.0.3-0.20220601164019-72c1f0b44f79 h1:JeJNHMISqkHIT50baRp6X+m6ZCd7QVpP5cW9ReVxjQk =
28
+ github.com/opencontainers/runtime-spec v1.0.3-0.20220601164019-72c1f0b44f79 /go.mod h1:jwyrGlmzljRJv/Fgzds9SsS/C5hL+LL3ko9hs6T5lQ0 =
29
29
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM =
30
30
github.com/pmezard/go-difflib v1.0.0 /go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4 =
31
31
github.com/rootless-containers/rootlesskit v1.0.1 h1:jepqW1txFSowKSMAEkVhWH3Oa1TCY9S400MVYe/6Iro =
Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ func main() {
31
31
specs.LinuxSyscall {
32
32
Names : []string {
33
33
"clone" ,
34
+ "clone3" ,
34
35
"mount" ,
35
36
"umount2" ,
36
37
"chroot" ,
You can’t perform that action at this time.
0 commit comments