migrated the webserver to go to keep my sanity

closes #12 #2
This commit is contained in:
odweta
2026-08-11 19:27:09 +02:00
parent e56ddc461b
commit 7ae0781430
608 changed files with 456 additions and 64005 deletions
+10
View File
@@ -0,0 +1,10 @@
FROM golang:1.26.1
WORKDIR /app
COPY . .
RUN go build -o app
EXPOSE 8080
CMD ["./app"]