first commit

This commit is contained in:
Gregory Salaun
2025-10-04 01:16:27 +02:00
commit 7fbecf7cee
22 changed files with 20141 additions and 0 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM golang:1.23.1
WORKDIR /app
COPY go.mod go.sum ./
COPY config.go config.yml database.go flexradio.go spot.go main.go TCPClient.go TCPServer.go utils.go log.go xml.go ./
COPY templates/* .
RUN go build -o bin main.go
ENTRYPOINT ["/app/bin"]