podman-build/pkg/specgen/generate/storage_linux.go
2025-10-11 12:30:35 +09:00

14 lines
203 B
Go

//go:build !remote
package generate
import (
"context"
"github.com/containers/common/libimage"
)
func imageRunPath(ctx context.Context, img *libimage.Image) (string, error) {
return "/run", nil
}