// ACME platform: everything you need to develop and ship improvements to
// the ACME clothing store.
package acme
import (
"dagger.cloud/alpine"
"dagger.cloud/dagger"
)
let base=alpine & {
package: {
bash: ">3.0"
rsync: true
}
www: {
source: {
// Make this undefined on purpose to require an input directory.
#dagger: compute: _
// List the contents of the source directory
listing: {
string
#dagger: compute: [
dagger.#Load & {
from: base
},
dagger.#Exec & {
args: ["sh", "-c", "ls /src > /tmp/out"]
mount: "/src": {
from: source
dagger.#Export & {
source: "/tmp/out"
]
host: string
url: {
dagger.#Load & { from: base },
args: ["sh", "-c", "echo -n 'https://\(host)/foo' > /tmp/out"]