UNPKG

@catladder/pipeline

Version:

Panter workflow for cloud CI/CD and DevOps

30 lines (26 loc) 594 B
import type { Config } from "../src"; const config = { appName: "test-app", customerName: "pan", components: { www: { dir: "www", build: { type: "node", docker: { additionsBegin: ["RUN apk add --no-cache openssl1.1-compat-dev"], additionsEnd: ["RUN yarn rebuild"], }, }, deploy: { type: "google-cloudrun", projectId: "asdf", region: "asia-east1", }, }, }, } satisfies Config; export default config; export const information = { title: "Node: Build with Docker Additions", };