europa: vendor universe.dagger.io
Signed-off-by: Andrea Luzzardi <aluzzardi@gmail.com>
This commit is contained in:
134
pkg/universe.dagger.io/examples/changelog.com/highlevel/ci.cue
Normal file
134
pkg/universe.dagger.io/examples/changelog.com/highlevel/ci.cue
Normal file
@@ -0,0 +1,134 @@
|
||||
package ci
|
||||
|
||||
import (
|
||||
"dagger.io/dagger"
|
||||
"dagger.io/dagger/engine"
|
||||
|
||||
"universe.dagger.io/docker"
|
||||
"universe.dagger.io/examples/changelog.com/highlevel/elixir/mix"
|
||||
)
|
||||
|
||||
dagger.#Plan & {
|
||||
// Receive things from client
|
||||
inputs: {
|
||||
directories: {
|
||||
// App source code
|
||||
app: _
|
||||
}
|
||||
secrets: {
|
||||
// Docker ID password
|
||||
docker: _
|
||||
}
|
||||
params: {
|
||||
// Which Elixir base image to download
|
||||
runtime_image: docker.#Ref | *"thechangelog/runtime:2021-05-29T10.17.12Z"
|
||||
// Which test DB image to download
|
||||
test_db_image: docker.#Ref | *"circleci/postgres:12.6"
|
||||
}
|
||||
}
|
||||
|
||||
// Do things
|
||||
actions: {
|
||||
// Reuse in all mix commands
|
||||
_appName: "changelog"
|
||||
|
||||
prod: assets: docker.#Build & {
|
||||
steps: [
|
||||
// 1. Start from dev assets :)
|
||||
dev.assets,
|
||||
// 2. Mix magical command
|
||||
mix.#Run & {
|
||||
script: "mix phx.digest"
|
||||
mix: {
|
||||
env: "prod"
|
||||
app: _appName
|
||||
depsCache: "readonly"
|
||||
buildCache: "readonly"
|
||||
}
|
||||
workdir: _
|
||||
// FIXME: remove copy-pasta
|
||||
mounts: nodeModules: {
|
||||
contents: engine.#CacheDir & {
|
||||
// FIXME: do we need an ID here?
|
||||
id: "\(mix.app)_assets_node_modules"
|
||||
// FIXME: does this command need write access to node_modules cache?
|
||||
concurrency: "readonly"
|
||||
}
|
||||
dest: "\(workdir)/node_modules"
|
||||
}
|
||||
},
|
||||
]
|
||||
}
|
||||
|
||||
dev: {
|
||||
build: mix.#Build & {
|
||||
env: "dev"
|
||||
app: "thechangelog"
|
||||
base: inputs.params.runtime_image
|
||||
source: inputs.directories.app.contents
|
||||
}
|
||||
|
||||
assets: docker.#Build & {
|
||||
steps: [
|
||||
// 1. Start from dev runtime build
|
||||
build,
|
||||
// 2. Build web assets
|
||||
mix.#Run & {
|
||||
mix: {
|
||||
env: "dev"
|
||||
app: _appName
|
||||
depsCache: "readonly"
|
||||
buildCache: "readonly"
|
||||
}
|
||||
// FIXME: move this to a reusable def (yarn package? or private?)
|
||||
mounts: nodeModules: {
|
||||
contents: engine.#CacheDir & {
|
||||
// FIXME: do we need an ID here?
|
||||
id: "\(mix.app)_assets_node_modules"
|
||||
// FIXME: will there be multiple writers?
|
||||
concurrency: "locked"
|
||||
}
|
||||
dest: "\(workdir)/node_modules"
|
||||
}
|
||||
// FIXME: run 'yarn install' and 'yarn run compile' separately, with different caching?
|
||||
// FIXME: can we reuse universe.dagger.io/yarn ???? 0:-)
|
||||
script: "yarn install --frozen-lockfile && yarn run compile"
|
||||
workdir: "/app/assets"
|
||||
},
|
||||
]
|
||||
}
|
||||
}
|
||||
test: {
|
||||
build: mix.#Build & {
|
||||
env: "test"
|
||||
app: _appName
|
||||
base: inputs.params.runtime_image
|
||||
source: inputs.directories.app.contents
|
||||
}
|
||||
|
||||
// Run tests
|
||||
run: docker.#Run & {
|
||||
image: build.output
|
||||
script: "mix test"
|
||||
// Don't cache running tests
|
||||
// Just because we've tested a version before, doesn't mean we don't
|
||||
// want to test it again.
|
||||
// FIXME: make this configurable
|
||||
always: true
|
||||
}
|
||||
|
||||
db: {
|
||||
// Pull test DB image
|
||||
pull: docker.#Pull & {
|
||||
source: inputs.params.test_db_image
|
||||
}
|
||||
|
||||
// Run test DB
|
||||
// FIXME: kill once no longer needed (when tests are done running)
|
||||
run: docker.#Run & {
|
||||
image: pull.output
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@@ -0,0 +1,96 @@
|
||||
package mix
|
||||
|
||||
import (
|
||||
"dagger.io/dagger"
|
||||
"dagger.io/dagger/engine"
|
||||
|
||||
"universe.dagger.io/docker"
|
||||
)
|
||||
|
||||
// Build an Elixir application with Mix
|
||||
#Build: {
|
||||
// Ref to base image
|
||||
// FIXME: spin out docker.#Build for max flexibility
|
||||
// Perhaps implement as a custom docker.#Build step?
|
||||
base: docker.#Ref
|
||||
|
||||
// App name (for cache scoping)
|
||||
app: string
|
||||
|
||||
// Mix environment
|
||||
env: string
|
||||
|
||||
// Application source code
|
||||
source: dagger.#FS
|
||||
|
||||
docker.#Build & {
|
||||
steps: [
|
||||
// 1. Pull base image
|
||||
docker.#Pull & {
|
||||
source: base
|
||||
},
|
||||
// 2. Copy app source
|
||||
docker.#Copy & {
|
||||
contents: source
|
||||
dest: "/app"
|
||||
},
|
||||
// 3. Download dependencies into deps cache
|
||||
#Run & {
|
||||
mix: {
|
||||
"env": env
|
||||
"app": app
|
||||
depsCache: "locked"
|
||||
}
|
||||
workdir: "/app"
|
||||
script: "mix deps.get"
|
||||
},
|
||||
// 4. Build!
|
||||
// FIXME: step 5 is to add image data, see issue 1339
|
||||
#Run & {
|
||||
mix: {
|
||||
"env": env
|
||||
"app": app
|
||||
depsCache: "private"
|
||||
buildCache: "locked"
|
||||
}
|
||||
workdir: "/app"
|
||||
script: "mix do deps.compile, compile"
|
||||
},
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
// Run mix correctly in a container
|
||||
#Run: {
|
||||
mix: {
|
||||
app: string
|
||||
env: string
|
||||
// FIXME: "ro" | "rw"
|
||||
depsCache?: "private" | "locked"
|
||||
buildCache?: "private" | "locked"
|
||||
}
|
||||
docker.#Run
|
||||
env: MIX_ENV: mix.env
|
||||
{
|
||||
mix: depsCache: string
|
||||
workdir: string
|
||||
mounts: depsCache: {
|
||||
contents: engine.#CacheDir & {
|
||||
id: "\(mix.app)_deps"
|
||||
concurrency: mix.depsCache
|
||||
}
|
||||
dest: "\(workdir)/deps"
|
||||
}
|
||||
} | {}
|
||||
{
|
||||
mix: buildCache: string
|
||||
workdir: string
|
||||
mounts: buildCache: {
|
||||
contents: engine.#CacheDir & {
|
||||
id: "\(mix.app)_deps"
|
||||
concurrency: mix.buildCache
|
||||
}
|
||||
dest: "\(workdir)/deps"
|
||||
}
|
||||
} | {}
|
||||
}
|
@@ -0,0 +1,5 @@
|
||||
# Low-level port of Changelog.com configuration
|
||||
|
||||
This is a port of the changelog.com configuration to the low-level `dagger/engine` APIs.
|
||||
|
||||
It currently only uses `engine` (no high-level APIs like `docker`, etc) and, because we don't currently have a way to implement long-running tasks in Europa, it doesn't parts of the config that require them, such as databases for testing. The hope is that we'll be able to figure out a way to implement that soon, and we'll update this config with those capabilities when we are able to.
|
171
pkg/universe.dagger.io/examples/changelog.com/lowlevel/main.cue
Normal file
171
pkg/universe.dagger.io/examples/changelog.com/lowlevel/main.cue
Normal file
@@ -0,0 +1,171 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"dagger.io/dagger/engine"
|
||||
)
|
||||
|
||||
runtime_image_ref: string | *"thechangelog/runtime:2021-05-29T10.17.12Z"
|
||||
|
||||
engine.#Plan & {
|
||||
inputs: directories: app: {
|
||||
path: "."
|
||||
exclude: [
|
||||
".circleci",
|
||||
".dagger",
|
||||
".git",
|
||||
".github",
|
||||
"2021",
|
||||
"2022",
|
||||
"_build/dev",
|
||||
"_build/test",
|
||||
"assets/node_modules",
|
||||
"cue.mod",
|
||||
"dev_docker",
|
||||
"docker",
|
||||
"import",
|
||||
"nginx",
|
||||
"priv/db",
|
||||
"priv/uploads",
|
||||
"script",
|
||||
"tmp",
|
||||
".all-contributorsrc",
|
||||
".autocomplete",
|
||||
".credo.exs",
|
||||
".dockerignore",
|
||||
".formatter.exs",
|
||||
".envrc",
|
||||
".env",
|
||||
".gitattributes",
|
||||
".gitignore",
|
||||
"README.md",
|
||||
"coveralls.json",
|
||||
"start_dev_stack.sh",
|
||||
".kube",
|
||||
"erl_crash.dump",
|
||||
"deps",
|
||||
"_build",
|
||||
"dagger",
|
||||
"main.cue",
|
||||
]
|
||||
}
|
||||
inputs: directories: docker: {
|
||||
path: "."
|
||||
include: [
|
||||
"docker/Dockerfile.production",
|
||||
".dockerignore",
|
||||
]
|
||||
}
|
||||
|
||||
actions: {
|
||||
runtimeImage: engine.#Pull & {
|
||||
source: runtime_image_ref
|
||||
}
|
||||
|
||||
depsCache: engine.#CacheDir & {
|
||||
id: "depsCache"
|
||||
}
|
||||
|
||||
depsCacheMount: "depsCache": {
|
||||
dest: *"/app/deps/" | string
|
||||
contents: depsCache
|
||||
}
|
||||
|
||||
buildCacheTest: engine.#CacheDir & {
|
||||
id: "buildCacheTest"
|
||||
}
|
||||
|
||||
buildCacheTestMount: "buildCacheTest": {
|
||||
dest: *"/app/_build/test" | string
|
||||
contents: buildCacheTest
|
||||
}
|
||||
|
||||
buildCacheProd: engine.#CacheDir & {
|
||||
id: "buildCacheProd"
|
||||
}
|
||||
|
||||
buildCacheProdMount: "buildCacheProd": {
|
||||
dest: *"/app/_build/prod" | string
|
||||
contents: buildCacheProd
|
||||
}
|
||||
|
||||
nodeModulesCache: engine.#CacheDir & {
|
||||
id: "nodeModulesCache"
|
||||
}
|
||||
|
||||
nodeModulesCacheMount: "nodeModulesCache": {
|
||||
dest: *"/app/assets/node_modules" | string
|
||||
contents: nodeModulesCache
|
||||
}
|
||||
|
||||
appImage: engine.#Copy & {
|
||||
input: runtimeImage.output
|
||||
source: root: inputs.directories.app.contents
|
||||
dest: "/app"
|
||||
}
|
||||
|
||||
deps: engine.#Exec & {
|
||||
input: appImage.output
|
||||
mounts: depsCacheMount
|
||||
workdir: "/app"
|
||||
args: ["bash", "-c", " mix deps.get"]
|
||||
}
|
||||
|
||||
assetsCompile: engine.#Exec & {
|
||||
input: depsCompileProd.output
|
||||
mounts: depsCacheMount & nodeModulesCacheMount
|
||||
workdir: "/app/assets"
|
||||
env: PATH: "/usr/local/lib/nodejs/node-v14.17.0-linux-x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
|
||||
args: ["bash", "-c", "yarn install --frozen-lockfile && yarn run compile"]
|
||||
}
|
||||
|
||||
#depsCompile: engine.#Exec & {
|
||||
input: deps.output
|
||||
mounts: depsCacheMount
|
||||
workdir: "/app"
|
||||
args: ["bash", "-c", "mix do deps.compile, compile"]
|
||||
}
|
||||
|
||||
depsCompileTest: #depsCompile & {
|
||||
env: MIX_ENV: "test"
|
||||
mounts: buildCacheTestMount
|
||||
}
|
||||
|
||||
depsCompileProd: #depsCompile & {
|
||||
env: MIX_ENV: "prod"
|
||||
mounts: buildCacheProdMount
|
||||
}
|
||||
|
||||
assetsDigest: engine.#Exec & {
|
||||
input: assetsCompile.output
|
||||
mounts: depsCacheMount & buildCacheProdMount & nodeModulesCacheMount
|
||||
env: MIX_ENV: "prod"
|
||||
workdir: "/app"
|
||||
args: ["bash", "-c", "mix phx.digest"]
|
||||
}
|
||||
|
||||
imageProdCacheCopy: engine.#Exec & {
|
||||
input: assetsDigest.output
|
||||
mounts: (depsCacheMount & {depsCache: dest: "/mnt/app/deps/"} )
|
||||
mounts: (buildCacheProdMount & {buildCacheProd: dest: "/mnt/app/_build/prod"} )
|
||||
args: ["bash", "-c", "cp -Rp /mnt/app/deps/* /app/deps/ && cp -Rp /mnt/app/_build/prod/* /app/_build/prod/"]
|
||||
}
|
||||
|
||||
imageProdDockerCopy: engine.#Copy & {
|
||||
input: imageProdCacheCopy.output
|
||||
source: root: inputs.directories.docker.contents
|
||||
dest: "/"
|
||||
}
|
||||
|
||||
imageProd: engine.#Build & {
|
||||
source: imageProdDockerCopy.output
|
||||
dockerfile: path: "/docker/Dockerfile.production"
|
||||
buildArg: {
|
||||
APP_FROM_PATH: "/app"
|
||||
GIT_AUTHOR: "joel"
|
||||
GIT_SHA: "abcdef"
|
||||
APP_VERSION: "main"
|
||||
BUILD_URL: "longtine.io/build"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
250
pkg/universe.dagger.io/examples/changelog.com/orig/main.cue
Normal file
250
pkg/universe.dagger.io/examples/changelog.com/orig/main.cue
Normal file
@@ -0,0 +1,250 @@
|
||||
// STARTING POINT: https://docs.dagger.io/1012/ci
|
||||
// + ../../../.circleci/config.yml
|
||||
package main
|
||||
|
||||
import (
|
||||
"alpha.dagger.io/dagger"
|
||||
"alpha.dagger.io/docker"
|
||||
"alpha.dagger.io/os"
|
||||
)
|
||||
|
||||
app_src: dagger.#Artifact
|
||||
prod_dockerfile: dagger.#Input & {string}
|
||||
docker_host: dagger.#Input & {string}
|
||||
dockerhub_username: dagger.#Input & {string}
|
||||
dockerhub_password: dagger.#Input & {dagger.#Secret}
|
||||
// ⚠️ Keep this in sync with ../docker/Dockerfile.production
|
||||
runtime_image_ref: dagger.#Input & {string | *"thechangelog/runtime:2021-05-29T10.17.12Z"}
|
||||
prod_image_ref: dagger.#Input & {string | *"thechangelog/changelog.com:dagger"}
|
||||
build_version: dagger.#Input & {string}
|
||||
git_branch: dagger.#Input & {string | *""}
|
||||
git_sha: dagger.#Input & {string}
|
||||
git_author: dagger.#Input & {string}
|
||||
app_version: dagger.#Input & {string}
|
||||
build_url: dagger.#Input & {string}
|
||||
// ⚠️ Keep this in sync with manifests/changelog/db.yml
|
||||
test_db_image_ref: dagger.#Input & {string | *"circleci/postgres:12.6"}
|
||||
test_db_container_name: "changelog_test_postgres"
|
||||
|
||||
// STORY #######################################################################
|
||||
//
|
||||
// 1. Migrate from CircleCI to GitHub Actions
|
||||
// - extract existing build pipeline into Dagger
|
||||
// - run the pipeline locally
|
||||
// - run the pipeline in GitHub Actions
|
||||
//
|
||||
// 2. Pipeline is 2x quicker (110s vs 228s)
|
||||
// - optimistic branching, as pipelines were originally intended
|
||||
// - use our own hardware - Linode g6-dedicated-8
|
||||
// - predictable runs, no queuing
|
||||
// - caching is buildkit layers
|
||||
//
|
||||
// 3. Open Telemetry integration out-of-the-box
|
||||
// - visualise all steps in Jaeger UI
|
||||
|
||||
// PIPELINE OVERVIEW ###########################################################
|
||||
//
|
||||
// app
|
||||
// |
|
||||
// v
|
||||
// test_db_start deps ----------------------------------------\
|
||||
// | | | |
|
||||
// | v v v
|
||||
// | deps_compile_test deps_compile_prod assets_compile
|
||||
// | | | | |
|
||||
// | | | \-----|
|
||||
// | v v |
|
||||
// \--------------> test image_prod_cache assets_digest
|
||||
// | | |
|
||||
// test_db_stop <---| v |
|
||||
// | image_prod <----------/
|
||||
// | |
|
||||
// | v
|
||||
// \--------------------> image_prod_tag
|
||||
//
|
||||
// ========================== BEFORE | AFTER | CHANGE ===================================
|
||||
// Test, build & push 370s | 10s | 37.00x | https://app.circleci.com/pipelines/github/thechangelog/changelog.com/520/workflows/fbb7c701-d25a-42c1-b42c-db514cd770b4
|
||||
// + app compile 220s | 100s | 2.20x | https://app.circleci.com/pipelines/github/thechangelog/changelog.com/582/workflows/65500f3d-eccc-49da-9ab0-69846bc812a7
|
||||
// + deps compile 480s | 110s | 4.36x | https://app.circleci.com/pipelines/github/thechangelog/changelog.com/532/workflows/94f5a339-52a1-45ba-b39b-1bbb69ed6488
|
||||
//
|
||||
// Uncached ???s | 245s | ?.??x |
|
||||
//
|
||||
// #############################################################################
|
||||
|
||||
test_db_start: docker.#Command & {
|
||||
host: docker_host
|
||||
env: {
|
||||
CONTAINER_NAME: test_db_container_name
|
||||
CONTAINER_IMAGE: test_db_image_ref
|
||||
}
|
||||
command: #"""
|
||||
docker container inspect $CONTAINER_NAME \
|
||||
--format 'Container "{{.Name}}" is "{{.State.Status}}"' \
|
||||
|| docker container run \
|
||||
--detach --rm --name $CONTAINER_NAME \
|
||||
--publish 127.0.0.1:5432:5432 \
|
||||
--env POSTGRES_USER=postgres \
|
||||
--env POSTGRES_DB=changelog_test \
|
||||
--env POSTGRES_PASSWORD=postgres \
|
||||
$CONTAINER_IMAGE
|
||||
|
||||
docker container inspect $CONTAINER_NAME \
|
||||
--format 'Container "{{.Name}}" is "{{.State.Status}}"'
|
||||
"""#
|
||||
}
|
||||
|
||||
app_image: docker.#Pull & {
|
||||
from: runtime_image_ref
|
||||
}
|
||||
|
||||
// Put app_src in the correct path, /app
|
||||
app: os.#Container & {
|
||||
image: app_image
|
||||
copy: "/app": from: app_src
|
||||
}
|
||||
|
||||
// https://github.com/moby/buildkit/blob/master/frontend/dockerfile/docs/syntax.md#run---mounttypecache
|
||||
deps_mount: "--mount=type=cache,id=deps,target=/app/deps/,sharing=shared"
|
||||
|
||||
build_test_mount: "--mount=type=cache,id=build_test,target=/app/_build/test,sharing=shared"
|
||||
build_prod_mount: "--mount=type=cache,id=build_prod,target=/app/_build/prod,sharing=shared"
|
||||
|
||||
node_modules_mount: "--mount=type=cache,id=assets_node_modules,target=/app/assets/node_modules,sharing=shared"
|
||||
|
||||
deps: docker.#Build & {
|
||||
source: app
|
||||
dockerfile: """
|
||||
FROM \(runtime_image_ref)
|
||||
COPY /app/ /app/
|
||||
WORKDIR /app
|
||||
RUN \(deps_mount) mix deps.get
|
||||
"""
|
||||
}
|
||||
|
||||
assets_compile: docker.#Build & {
|
||||
source: deps
|
||||
dockerfile: """
|
||||
FROM \(runtime_image_ref)
|
||||
COPY /app/ /app/
|
||||
WORKDIR /app/assets
|
||||
RUN \(deps_mount) \(node_modules_mount) yarn install --frozen-lockfile && yarn run compile
|
||||
"""
|
||||
}
|
||||
|
||||
#deps_compile: docker.#Build & {
|
||||
source: deps
|
||||
dockerfile: """
|
||||
FROM \(runtime_image_ref)
|
||||
ARG MIX_ENV
|
||||
ENV MIX_ENV=$MIX_ENV
|
||||
COPY /app/ /app/
|
||||
WORKDIR /app
|
||||
RUN \(deps_mount) \(build_test_mount) \(build_prod_mount) mix do deps.compile, compile
|
||||
"""
|
||||
}
|
||||
|
||||
deps_compile_test: #deps_compile & {
|
||||
args: MIX_ENV: "test"
|
||||
}
|
||||
|
||||
test: docker.#Build & {
|
||||
source: deps_compile_test
|
||||
dockerfile: """
|
||||
FROM \(runtime_image_ref)
|
||||
ENV MIX_ENV=test
|
||||
COPY /app/ /app/
|
||||
WORKDIR /app
|
||||
RUN \(deps_mount) \(build_test_mount) mix test
|
||||
"""
|
||||
}
|
||||
|
||||
test_db_stop: docker.#Command & {
|
||||
host: docker_host
|
||||
env: {
|
||||
DEP: test.dockerfile
|
||||
CONTAINER_NAME: test_db_container_name
|
||||
}
|
||||
command: #"""
|
||||
docker container rm --force $CONTAINER_NAME
|
||||
"""#
|
||||
}
|
||||
|
||||
deps_compile_prod: #deps_compile & {
|
||||
args: MIX_ENV: "prod"
|
||||
}
|
||||
|
||||
assets_digest: docker.#Build & {
|
||||
source: assets_compile
|
||||
args: ONLY_RUN_AFTER_DEPS_COMPILE_PROD_OK: deps_compile_prod.args.MIX_ENV
|
||||
dockerfile: """
|
||||
FROM \(runtime_image_ref)
|
||||
COPY /app/ /app/
|
||||
ENV MIX_ENV=prod
|
||||
WORKDIR /app/
|
||||
RUN \(deps_mount) \(build_prod_mount) \(node_modules_mount) mix phx.digest
|
||||
"""
|
||||
}
|
||||
|
||||
image_prod_cache: docker.#Build & {
|
||||
source: deps_compile_prod
|
||||
dockerfile: """
|
||||
FROM \(runtime_image_ref)
|
||||
COPY /app/ /app/
|
||||
WORKDIR /app
|
||||
RUN --mount=type=cache,id=deps,target=/mnt/app/deps,sharing=shared cp -Rp /mnt/app/deps/* /app/deps/
|
||||
RUN --mount=type=cache,id=build_prod,target=/mnt/app/_build/prod,sharing=shared cp -Rp /mnt/app/_build/prod/* /app/_build/prod/
|
||||
"""
|
||||
}
|
||||
|
||||
image_prod: docker.#Command & {
|
||||
host: docker_host
|
||||
copy: {
|
||||
"/tmp/app": from: os.#Dir & {
|
||||
from: image_prod_cache
|
||||
path: "/app"
|
||||
}
|
||||
|
||||
"/tmp/app/priv/static": from: os.#Dir & {
|
||||
from: assets_digest
|
||||
path: "/app/priv/static"
|
||||
}
|
||||
}
|
||||
env: {
|
||||
GIT_AUTHOR: git_author
|
||||
GIT_SHA: git_sha
|
||||
APP_VERSION: app_version
|
||||
BUILD_VERSION: build_version
|
||||
BUILD_URL: build_url
|
||||
PROD_IMAGE_REF: prod_image_ref
|
||||
}
|
||||
files: "/tmp/Dockerfile": prod_dockerfile
|
||||
secret: "/run/secrets/dockerhub_password": dockerhub_password
|
||||
command: #"""
|
||||
cd /tmp
|
||||
docker build \
|
||||
--build-arg APP_FROM_PATH=/app \
|
||||
--build-arg GIT_AUTHOR="$GIT_AUTHOR" \
|
||||
--build-arg GIT_SHA="$GIT_SHA" \
|
||||
--build-arg APP_VERSION="$APP_VERSION" \
|
||||
--build-arg BUILD_URL="$BUILD_URL" \
|
||||
--tag "$PROD_IMAGE_REF" .
|
||||
"""#
|
||||
}
|
||||
|
||||
if git_branch == "master" {
|
||||
image_prod_tag: docker.#Command & {
|
||||
host: docker_host
|
||||
env: {
|
||||
DOCKERHUB_USERNAME: dockerhub_username
|
||||
PROD_IMAGE_REF: image_prod.env.PROD_IMAGE_REF
|
||||
ONLY_RUN_AFTER_TEST_OK: test.dockerfile
|
||||
}
|
||||
secret: "/run/secrets/dockerhub_password": dockerhub_password
|
||||
command: #"""
|
||||
docker login --username "$DOCKERHUB_USERNAME" --password "$(cat /run/secrets/dockerhub_password)"
|
||||
docker push "$PROD_IMAGE_REF" | tee docker.push.log
|
||||
echo "$PROD_IMAGE_REF" > image.ref
|
||||
awk '/digest/ { print $3 }' < docker.push.log > image.digest
|
||||
"""#
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user