initial commit
All checks were successful
Build image / release-image (push) Successful in 3m13s

This commit is contained in:
2024-10-18 15:38:06 +00:00
commit dec34cbde8
2 changed files with 61 additions and 0 deletions

9
Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM node:22-alpine
RUN apk add kubectl bash git
ADD rootca.pem /usr/local/share/ca-certificates/cacert.crt
RUN apk --no-cache add --no-check-certificate ca-certificates \
&& update-ca-certificates --fresh
ENTRYPOINT ["/usr/bin/env"]
CMD ["bash"]