4be33e33f1
Replace single fat image with purpose-built images per workflow type. Each image is lean: base (Alpine+AWS+git) → go/node/deploy extend it. docker image standalone (dind base). godot for future game builds. build-all.sh builds base first, then all others in parallel.
11 lines
352 B
Docker
11 lines
352 B
Docker
# tinqs/ci deploy — lightweight deploy-only runner
|
|
# Used by: deploy-arikigame, release
|
|
# runs-on: deploy
|
|
# Smallest image — just AWS CLI + SSH for S3 sync, CloudFront invalidation, ECS updates.
|
|
|
|
ARG BASE_IMAGE=tinqs-runner-base:latest
|
|
FROM ${BASE_IMAGE}
|
|
|
|
# Nothing extra needed — base already has aws, git, ssh, curl
|
|
RUN aws --version && ssh -V
|