move gleam action runner to homelab repo

This commit is contained in:
Travis Shears 2026-03-24 09:17:05 +01:00
parent d15751d37b
commit ed37e1c550
Signed by: travisshears
GPG key ID: CB9BF1910F3F7469
2 changed files with 0 additions and 19 deletions

View file

@ -1,3 +0,0 @@
FROM ghcr.io/gleam-lang/gleam:v1.15.2-erlang
RUN apt-get update && apt-get install -y nodejs npm && rm -rf /var/lib/apt/lists/*

View file

@ -1,16 +0,0 @@
#!/bin/sh
set -e
export AWS_PROFILE=personal
export AWS_REGION=eu-central-1
REPO_NAME="gleam-tester-homelabstack"
if ! aws ecr describe-repositories --repository-names "$REPO_NAME" >/dev/null 2>&1; then
aws ecr create-repository --repository-name "$REPO_NAME"
fi
docker buildx build --platform linux/amd64,linux/arm64 -t "853019563312.dkr.ecr.eu-central-1.amazonaws.com/${REPO_NAME}:latest" --push .
echo "Docker image built and pushed to AWS ECR"