mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-07 00:14:21 +01:00
Add the Makefile target of building shimv2. Fixes: #485 Signed-off-by: fupan <lifupan@gmail.com>
16 lines
287 B
Go
16 lines
287 B
Go
// Copyright (c) 2018 HyperHQ Inc.
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
package main
|
|
|
|
import (
|
|
"github.com/containerd/containerd/runtime/v2/shim"
|
|
"github.com/kata-containers/runtime/containerd-shim-v2"
|
|
)
|
|
|
|
func main() {
|
|
shim.Run("io.containerd.kata.v2", containerdshim.New)
|
|
}
|