core/testsDockerfile

8 lines
189 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:41:45 +00:00
RUN apk add tzdata curl
CMD go run ./cmd/main.go & sleep 30 && go test ./tests && kill %1