Open vitalz opened 3 years ago
I've added YamlSwift to my Project package deps:
dependencies: [ .package(url: "https://github.com/behrang/YamlSwift.git", from: "3.4.4"), ]
and to target deps:
.target( name: "MyAppTarget", dependencies: [ .product(name: "Yaml", package: "YamlSwift"), ],
Then Yaml works fine on native macOS. But when I try to compile app code in Docker swift container (from swift:5.3-focal image) it will fail:
error: product dependency 'Yaml' in package 'YamlSwift' not found
Is it similar to this issue?
Lemme take a look.
I've added YamlSwift to my Project package deps:
and to target deps:
Then Yaml works fine on native macOS.
But when I try to compile app code in Docker swift container (from swift:5.3-focal image) it will fail: