Added temp formatting to '/stats' and added documentation and CI

This commit is contained in:
2025-06-19 17:22:44 +02:00
parent ca4b75af7a
commit 0f487e3f93
9 changed files with 1102 additions and 17 deletions

17
Dockerfile Normal file
View File

@@ -0,0 +1,17 @@
FROM golang:alpine
LABEL author="Marco Cetica"
# Prepare working directory
RUN mkdir /app
WORKDIR /app
# Copy source files
COPY . .
# Build the application
RUN go build -ldflags="-s -w" -o zephyr
# Run the app
EXPOSE 3000
CMD ["./zephyr"]