use llm generated content

This commit is contained in:
2025-08-06 18:48:09 +02:00
parent fee8e13edd
commit 8b72dcbf6c
5 changed files with 114 additions and 0 deletions

25
Dockerfile Normal file
View File

@@ -0,0 +1,25 @@
FROM node:lts-alpine
LABEL maintainer="Arcodange arcodange@gmail.com"
LABEL description="Image minimaliste avec OpenTofu, Node.js, git, curl, jq, yq, openssh"
# Dépendances système
RUN apk add --no-cache \
bash \
curl \
git \
openssh \
jq \
yq \
ca-certificates
# Installer OpenTofu via le script officiel
# Variables
ENV TOFU_VERSION="1.10.3"
RUN curl -fsSL https://get.opentofu.org/install-opentofu.sh | bash -s -- --install-method standalone --opentofu-version ${TOFU_VERSION} --skip-verify
# Vérifications (optionnel)
RUN node -v && npm -v && tofu -version && git --version && ssh -V && jq --version && yq --version
ENV PATH="/usr/local/bin:${PATH}"
CMD [ "/bin/sh"]