プレイグラウンド、サンドボックス、使い捨てスクリプト置き場
0

Configure Feed

Select the types of activity you want to include in your feed.

create dagger

Kohei Watanabe (Apr 24, 2022, 7:24 PM +0900) c306eb68 7c856c88

+26
+1
dagger/.gitignore
··· 1 + cue.mod
+1
dagger/Dockerfile
··· 1 + FROM alpine
+24
dagger/app.cue
··· 1 + package app 2 + 3 + import ( 4 + "dagger.io/dagger" 5 + "dagger.io/dagger/core" 6 + ) 7 + 8 + dagger.#Plan & { 9 + client: { 10 + filesystem: { 11 + ".": read: contents: dagger.#FS 12 + } 13 + } 14 + actions: { 15 + docker: core.#Dockerfile & { 16 + source: client.filesystem.".".read.contents 17 + } 18 + hello: core.#Exec & { 19 + input: docker.output 20 + args: ["echo", "Hello, World!"] 21 + always: true 22 + } 23 + } 24 + }
dagger/cue.mod/module.cue

This is a binary file and will not be displayed.