- Add missing IMAGE_PULL_SECRETS=gitlab-registry to devpod-setup.sh - CI job pushes devcontainer to SCW registry (not internal GitLab) - Remove unused internal registry auth from build-devcontainer job - Add customizations.devpod.provider to devcontainer.json Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
24 lines
557 B
JSON
24 lines
557 B
JSON
{
|
|
"name": "foxhunt",
|
|
"build": {
|
|
"dockerfile": "Dockerfile",
|
|
"context": "..",
|
|
"args": {
|
|
"CI_BUILDER_IMAGE": "rg.fr-par.scw.cloud/foxhunt-ci/ci-builder:latest"
|
|
}
|
|
},
|
|
"remoteUser": "dev",
|
|
"containerEnv": {
|
|
"SQLX_OFFLINE": "true",
|
|
"CUDA_COMPUTE_CAP": "90",
|
|
"EDITOR": "vim"
|
|
},
|
|
"postCreateCommand": "/usr/local/bin/init-home.sh",
|
|
"postStartCommand": "claude --version && cargo --version && kubectl cluster-info 2>/dev/null || true",
|
|
"customizations": {
|
|
"devpod": {
|
|
"provider": "kubernetes"
|
|
}
|
|
}
|
|
}
|