feat: Initial code drop
All checks were successful
Build Docker / BuildImage (push) Successful in 2m23s

This commit is contained in:
2025-10-30 12:10:38 +11:00
commit efa677c43d
3 changed files with 65 additions and 0 deletions

View File

@@ -0,0 +1,46 @@
name: Build Docker
run-name: Build Docker Images
on:
push:
jobs:
BuildImage:
runs-on: [ubuntu-latest, amd]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install Docker
run : |
apt-get install ca-certificates curl gnupg
install -m 0755 -d /etc/apt/keyrings
curl -fsSL https://download.docker.com/linux/debian/gpg | gpg --dearmor -o /etc/apt/keyrings/docker.gpg
chmod a+r /etc/apt/keyrings/docker.gpg
echo "deb [arch="$(dpkg --print-architecture)" signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/debian "$(. /etc/os-release && echo "$VERSION_CODENAME")" stable" | tee /etc/apt/sources.list.d/docker.list > /dev/null
apt-get update
apt-get install docker-ce-cli -y
- name: Build Docker image
run : |
echo "${{ secrets.DOCKERGIT_TOKEN }}" | docker login git.woodburn.au -u nathanwoodburn --password-stdin
echo "branch=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}"
tag=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}
tag=${tag//\//-}
tag_num=${GITHUB_RUN_NUMBER}
echo "tag_num=$tag_num"
if [[ "$tag" == "main" ]]; then
tag="latest"
else
tag_num="${tag}-${tag_num}"
fi
repo=$GITHUB_REPOSITORY
repo=${repo#*/}
repo=$(echo $repo | tr '[:upper:]' '[:lower:]')
echo "container=$repo"
docker build -t $repo:$tag_num .
docker tag $repo:$tag_num git.woodburn.au/nathanwoodburn/$repo:$tag_num
docker push git.woodburn.au/nathanwoodburn/$repo:$tag_num
docker tag $repo:$tag_num git.woodburn.au/nathanwoodburn/$repo:$tag
docker push git.woodburn.au/nathanwoodburn/$repo:$tag

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
# Start from a lightweight nginx base image
FROM nginx:alpine
# Set environment variable with a default (can be overridden at runtime)
ENV REDIRECT_URL="https://example.com"
# Copy in a custom nginx template
COPY default.conf.template /etc/nginx/templates/default.conf.template
# Expose HTTP port
EXPOSE 80

8
default.conf.template Normal file
View File

@@ -0,0 +1,8 @@
server {
listen 80;
server_name _;
location / {
return 302 $scheme://$REDIRECT_URL$request_uri;
}
}