core/testsDockerfile

10 lines
248 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:36:45 +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