core/deployments/renew_tests/TestsDockerfile

17 lines
424 B
Plaintext
Raw Normal View History

2025-08-25 13:49:05 +00:00
FROM gitea.pena/penadevops/container-images/golang:1.23.8-alpine
2025-08-26 07:30:47 +00:00
2025-08-26 08:33:23 +00:00
ENV GOPRIVATE=gitea.pena/*
ARG REGISTRY_USER
ARG REGISTRY_PASSWORD
RUN git config --global url."https://${REGISTRY_USER}:${REGISTRY_PASSWORD}@gitea.pena/".insteadOf "https://gitea.pena/"
2025-08-26 07:53:01 +00:00
2025-08-26 07:30:47 +00:00
WORKDIR /app
COPY go.mod go.sum ./
RUN go mod download
2025-08-26 07:30:47 +00:00
COPY . .
2025-07-31 12:42:30 +00:00
ENTRYPOINT ["/sbin/catatonit", "--"]
CMD go run ./cmd/main.go & sleep 30 && go test ./tests && kill %1