dockerfile

This commit is contained in:
faten 2025-04-22 09:56:35 +00:00
parent 8e1a8c46cc
commit a728b883ec
2 changed files with 2 additions and 6 deletions

2
Dockerfile Normal file
View File

@ -0,0 +1,2 @@
FROM alpine:latest
RUN apk add --no-cache py3-openstackclient jq bash

View File

@ -6,12 +6,6 @@
# Fait échouer le pipeline si une commande échoue
set -o pipefail
echo "--- Installation des dépendances Alpine (OpenStack Client, jq) ---"
sudo apk add --no-cache py3-openstackclient jq || { echo "ERREUR: apk add a échoué."; exit 1; }
echo "--- Fin Installation Alpine ---"
echo ">>>>>> DEBUG: Liste des variables d'environnement reçues par le script <<<<<<"
env | sort
echo ">>>>>>>>>>>>>>>>>>>> FIN DEBUG <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<"