All checks were successful
lecoffre_node-ci-ext / ci (push) Successful in 4s
14 lines
351 B
Docker
14 lines
351 B
Docker
# Dockerfile personnalisé pour BlindBit avec pgrep et wget
|
|
FROM git.4nkweb.com/4nk/blindbit-oracle:dev
|
|
|
|
# Installer pgrep, wget et autres outils utiles pour les healthchecks
|
|
USER root
|
|
RUN apt-get update && apt-get install -y procps wget curl && \
|
|
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
|
|
|
# Revenir à l'utilisateur par défaut
|
|
USER root
|
|
|
|
|
|
|