WIP: Fix Europa yarn
Signed-off-by: Andrea Luzzardi <aluzzardi@gmail.com>
This commit is contained in:
committed by
Sam Alba
parent
ed8bb3f91b
commit
c7ffdf788f
1
pkg/dagger.io/cue.mod/module.cue
Normal file
1
pkg/dagger.io/cue.mod/module.cue
Normal file
@@ -0,0 +1 @@
|
||||
module: "dagger.io"
|
@@ -7,7 +7,7 @@ package engine
|
||||
// - A directory containing binary artifacts
|
||||
// Rule of thumb: if it fits in a tar archive, it fits in a #FS.
|
||||
#FS: {
|
||||
$dagger: fs: _id: string | null
|
||||
$dagger: fs: _id: !="" | null
|
||||
}
|
||||
|
||||
// A reference to an external secret, for example:
|
||||
@@ -17,7 +17,7 @@ package engine
|
||||
// Secrets are never merged in the Cue tree. They can only be used
|
||||
// by a special filesystem mount designed to minimize leak risk.
|
||||
#Secret: {
|
||||
$dagger: secret: _id: string
|
||||
$dagger: secret: _id: !=""
|
||||
}
|
||||
|
||||
// A reference to a network service endpoint, for example:
|
||||
@@ -25,5 +25,5 @@ package engine
|
||||
// - A unix or npipe socket
|
||||
// - An HTTPS endpoint
|
||||
#Service: {
|
||||
$dagger: service: _id: string
|
||||
$dagger: service: _id: !=""
|
||||
}
|
||||
|
Reference in New Issue
Block a user