removing arch from go build
This commit is contained in:
@@ -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
|
||||
|
@@ -1,4 +1,6 @@
|
||||
# Haven Notify
|
||||
<div align="center">
|
||||
<img src="./assets/widelogo.png" alt="Haven Notify Logo">
|
||||
</div>
|
||||
|
||||
## Overview
|
||||
Haven Notify is an internal service designed to send notifications to a specified Discord channel.
|
||||
|
BIN
haven-notify/assets/widelogo.png
Normal file
BIN
haven-notify/assets/widelogo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 334 KiB |
Reference in New Issue
Block a user