This commit is contained in:
Odweta
2026-03-19 10:32:41 +01:00
parent 12def174a4
commit 868594bc3a
6 changed files with 43 additions and 6 deletions
+10
View File
@@ -0,0 +1,10 @@
FROM golang:1.22-alpine
WORKDIR /app
COPY . .
RUN go build -o app
EXPOSE 8080
CMD ["./app"]