mirror of
https://github.com/opencontainers/runc.git
synced 2026-07-11 14:13:58 +08:00
fcbde0ce9f
runc currently fails to build against the upstream version of runtime-spec/specs-go. ``` # github.com/opencontainers/runc ./spec.go:189: cannot use specs.Linux literal (type specs.Linux) as type *specs.Linux in field value ``` on account of https://github.com/opencontainers/runtime-spec/commit/63231576ec8460849308b78f0308506010a0f709#diff-7f24d60f0cbb9c433e165467e3d34838R25 This commit updates the dependency to current runtime-spec master and fixes the type mismatch. Fixes #1035 Signed-off-by: Adam Thomason <ad@mthomason.net>