feat: add devpod image — code-server, Claude Code, bun, kubectl
Some checks failed
Build & Release / build (push) Successful in 22s
Build Devpod / build (push) Failing after 5s

This commit is contained in:
Ryan Moon
2026-04-04 06:56:56 -05:00
parent de70fb47f9
commit b40bab0391
3 changed files with 89 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
name: Build Devpod
on:
push:
branches: [main]
paths:
- Dockerfile.devpod
- entrypoint-devpod.sh
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
env:
REGISTRY: registry.digitalocean.com/lunarfront
DOCKER_HOST: tcp://localhost:2375
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Login to DOCR
run: echo "${{ secrets.DOCR_TOKEN }}" | docker login registry.digitalocean.com -u token --password-stdin
- name: Build and push devpod
run: |
docker build \
-t $REGISTRY/lunarfront-devpod:latest \
-f Dockerfile.devpod .
docker push $REGISTRY/lunarfront-devpod:latest