stdlib: dagger.io/js/react

Signed-off-by: Solomon Hykes <sh.github.6811@hykes.org>
This commit is contained in:
Solomon Hykes
2021-04-07 16:57:39 +00:00
parent cfde22b69d
commit ee621590ff
9 changed files with 112 additions and 110 deletions

View File

@@ -0,0 +1,39 @@
package react
import (
"dagger.io/dagger"
"dagger.io/js/react"
"dagger.io/alpine"
"dagger.io/docker"
)
TestData: dagger.#Artifact
TestReact: {
app: react.#App & {
source: TestData
}
test: docker.#Container & {
image: alpine.#Image & {
package: bash: "=5.1.0-r0"
}
volume: build: {
from: app.build
dest: "/build"
}
command: """
test "$(cat /build/test)" = "output"
"""
shell: {
path: "/bin/bash"
args: [
"--noprofile",
"--norc",
"-eo",
"pipefail",
"-c",
]
}
}
}