diff --git a/.gitea/workflows/haven-notify.yaml b/.gitea/workflows/haven-notify.yaml index 7c4d937..f39c14c 100644 --- a/.gitea/workflows/haven-notify.yaml +++ b/.gitea/workflows/haven-notify.yaml @@ -18,7 +18,7 @@ env: jobs: build_haven_notify: name: Build Haven Notify Image - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - name: Check out repository diff --git a/haven-notify/Dockerfile b/haven-notify/Dockerfile index 60661db..a6a64b2 100644 --- a/haven-notify/Dockerfile +++ b/haven-notify/Dockerfile @@ -1,10 +1,9 @@ # Start from the official Golang image for building -ARG TARGETARCH=amd64 -FROM golang:1.25 AS builder +FROM golang:1.22 AS builder WORKDIR /app COPY . . -# Build statically for Linux and selected architecture -RUN GOOS=linux GOARCH=${TARGETARCH} CGO_ENABLED=0 go build -o haven-notify main.go +# Build statically for Linux +RUN GOOS=linux CGO_ENABLED=0 go build -o haven-notify main.go # Use Alpine for running, with CA certificates for TLS FROM alpine:latest diff --git a/haven-notify/README.md b/haven-notify/README.md index 5d543bf..0878dfc 100644 --- a/haven-notify/README.md +++ b/haven-notify/README.md @@ -1,4 +1,6 @@ -# Haven Notify +
+ Haven Notify Logo +
## Overview Haven Notify is an internal service designed to send notifications to a specified Discord channel. diff --git a/haven-notify/assets/widelogo.png b/haven-notify/assets/widelogo.png new file mode 100644 index 0000000..5bf264c Binary files /dev/null and b/haven-notify/assets/widelogo.png differ