wip
Some checks failed
ci/woodpecker/push/fmt Pipeline failed
ci/woodpecker/push/tofu Pipeline failed

This commit is contained in:
cătălin 2026-04-09 11:25:09 +02:00
commit fe6d1777f3
No known key found for this signature in database
15 changed files with 212 additions and 189 deletions

15
Dockerfile Normal file
View file

@ -0,0 +1,15 @@
FROM alpine:3.21 AS tofu
RUN apk add --no-cache opentofu
CMD ["/bin/sh"]
FROM tofu AS fmt
RUN apk add --no-cache \
pre-commit \
kubeconform --repository=http://dl-cdn.alpinelinux.org/alpine/edge/testing/
COPY --from=ghcr.io/terraform-linters/tflint:v0.61.0 /usr/local/bin/tflint /usr/local/bin/tflint
CMD ["/bin/sh"]