core/testsDockerfile

9 lines
247 B
Plaintext
Raw Normal View History

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