17 lines
329 B
Plaintext
17 lines
329 B
Plaintext
let makeApp = ../app/make.dhall
|
|
|
|
let Config = ../app/config.dhall
|
|
|
|
let image = env:DOCKER_IMAGE as Text ? "xena/within.website:013120201402"
|
|
|
|
let cfg =
|
|
Config::{
|
|
, name = "withinwebsite"
|
|
, appPort = 5000
|
|
, image = image
|
|
, domain = "within.website"
|
|
, leIssuer = "prod"
|
|
}
|
|
|
|
in makeApp cfg
|