Added Docker container and compose definitions to make development easier
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Gregory Ballantine
2026-07-24 11:00:35 -04:00
parent 6ac189a72c
commit 58dd358acb
5 changed files with 75 additions and 38 deletions
+15
View File
@@ -0,0 +1,15 @@
FROM golang:1.26
WORKDIR /app
RUN apt install -y make gcc
ENV CGO_ENABLED=1
# Copy dependency definitions first (caching optimization)
COPY go.mod go.sum ./
RUN go mod download
COPY . .
RUN make build BUILD_DIR=/tmp