mirror of
https://github.com/gitpod-io/gitpod.git
synced 2025-12-08 17:36:30 +00:00
33 lines
862 B
YAML
33 lines
862 B
YAML
packages:
|
|
- name: docker
|
|
type: docker
|
|
srcs:
|
|
- "supervisor-ide-config.json"
|
|
deps:
|
|
- :app
|
|
argdeps:
|
|
- imageRepoBase
|
|
config:
|
|
dockerfile: leeway.Dockerfile
|
|
metadata:
|
|
helm-component: workspace.codeHelperImage
|
|
image:
|
|
- ${imageRepoBase}/ide/code-codehelper:${version}
|
|
- ${imageRepoBase}/ide/code-codehelper:commit-${__git_commit}
|
|
- name: app
|
|
type: go
|
|
srcs:
|
|
- "**/*.go"
|
|
- "go.mod"
|
|
- "go.sum"
|
|
env:
|
|
- CGO_ENABLED=0
|
|
- GOOS=linux
|
|
deps:
|
|
- components/gitpod-protocol/go:lib
|
|
- components/supervisor-api/go:lib
|
|
- components/common-go:lib
|
|
config:
|
|
packaging: app
|
|
buildCommand: ["go", "build", "-trimpath", "-ldflags", "-buildid= -w -s -X 'github.com/gitpod-io/gitpod/code/codehelper.Version=commit-${__git_commit}'"]
|