2025-08-25 13:49:05 +00:00
|
|
|
FROM gitea.pena/penadevops/container-images/golang:1.23.8-alpine
|
2025-07-30 12:14:48 +00:00
|
|
|
COPY . .
|
|
|
|
RUN go mod download
|
2025-07-31 12:42:30 +00:00
|
|
|
RUN apk add --no-cache tzdata curl catatonit
|
|
|
|
ENTRYPOINT ["/sbin/catatonit", "--"]
|
2025-07-30 12:14:48 +00:00
|
|
|
|
|
|
|
CMD go run ./cmd/main.go & sleep 30 && go test ./tests && kill %1
|