modified: .gitea/workflows/gitea-runner.yml
All checks were successful
build go / gitea-runner:1.0 (push) Successful in 26s

This commit is contained in:
Kyle Speight
2025-10-26 01:43:16 -07:00
parent 221f3c1579
commit 7a736962f6
2 changed files with 7 additions and 4 deletions

View File

@@ -35,8 +35,8 @@ jobs:
- uses: docker/login-action@v3
with:
registry: git.kyle-speight.de
username: kyle-admin # New secret: Your Gitea username or a service account
password: ${{ secrets.PASSWORD }} # New secret: A token with registry write access
username: kyle-admin
password: ${{ secrets.PASSWORD }}
- uses: docker/build-push-action@v6
with:
context: ./go

View File

@@ -1,8 +1,11 @@
# Copyright 2022 Kyle Speight
#
# Licensed under the OPLv1 http://opensource.org/licenses/OPL-1.0
FROM --platform=$TARGETOS/$TARGETARCH golang:1.23-alpine
LABEL author="Kyle Speight" maintainer="kyle@kyle-hosting.xyz"
LABEL author="Kyle Speight" maintainer="kyle@kyle-speight.de"
RUN apk add --update --no-cache ca-certificates tzdata \
RUN apk add --update --no-cache git curl nano wget ca-certificates tzdata \
&& adduser -D -h /home/container container
USER container