devenv: use dagger.io/os
Signed-off-by: Solomon Hykes <sh.github.6811@hykes.org>
This commit is contained in:
parent
052a623294
commit
3b03c96e28
6
.dagger/env/dev/main.cue
vendored
6
.dagger/env/dev/main.cue
vendored
@ -3,7 +3,7 @@ package main
|
||||
|
||||
import (
|
||||
"dagger.io/dagger"
|
||||
"dagger.io/io"
|
||||
"dagger.io/os"
|
||||
"dagger.io/alpine"
|
||||
"dagger.io/docker"
|
||||
"dagger.io/go"
|
||||
@ -16,7 +16,7 @@ source: dagger.#Artifact
|
||||
test: {
|
||||
// Go unit tests
|
||||
unit: {
|
||||
logs: (io.#File & {
|
||||
logs: (os.#File & {
|
||||
from: build.ctr
|
||||
path: "/test.log"
|
||||
read: format: "string"
|
||||
@ -47,7 +47,7 @@ build: {
|
||||
outputDir: "/binaries"
|
||||
}
|
||||
|
||||
logs: (io.#File & {
|
||||
logs: (os.#File & {
|
||||
from: ctr
|
||||
path: "/build.log"
|
||||
read: format: "string"
|
||||
|
6
.dagger/env/sandbox/sandbox.cue
vendored
6
.dagger/env/sandbox/sandbox.cue
vendored
@ -2,20 +2,20 @@ package main
|
||||
|
||||
import (
|
||||
"dagger.io/docker"
|
||||
"dagger.io/io"
|
||||
"dagger.io/os"
|
||||
)
|
||||
|
||||
let ctr = docker.#Container & {
|
||||
command: "echo 'hello world!' > /etc/motd"
|
||||
}
|
||||
|
||||
motd: (io.#File & {
|
||||
motd: (os.#File & {
|
||||
from: ctr
|
||||
path: "/etc/motd"
|
||||
read: format: "string"
|
||||
}).read.data
|
||||
|
||||
etc: (io.#Dir & {
|
||||
etc: (os.#Dir & {
|
||||
from: ctr
|
||||
path: "/etc"
|
||||
}).read.tree
|
||||
|
Reference in New Issue
Block a user