feat(docker): backports docker configuration from main for testing.

This commit is contained in:
Houmgaor
2025-11-09 17:19:36 +01:00
parent fd5f3e5aae
commit 2a7a44b974
6 changed files with 340 additions and 0 deletions

14
Dockerfile Normal file
View File

@@ -0,0 +1,14 @@
FROM golang:1.25-alpine3.21
ENV GO111MODULE=on
WORKDIR /app/erupe
COPY go.mod .
COPY go.sum .
RUN go mod download
COPY . .
CMD [ "go", "run", "." ]