use llm generated content
This commit is contained in:
25
Dockerfile
Normal file
25
Dockerfile
Normal 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"]
|
||||
Reference in New Issue
Block a user