AAT docker

This commit is contained in:
stanig2106
2025-09-10 00:09:27 +02:00
commit 77a33bdbc3
2 changed files with 96 additions and 0 deletions

19
Dockerfile Normal file
View File

@@ -0,0 +1,19 @@
# Image Node 22
FROM node:22-alpine
# Outils utiles pour certaines dépendances natives et git
RUN apk add --no-cache \
git \
python3 \
make \
g++ \
bash \
libc6-compat
# Dossier persistant où l'install déposera l'app
WORKDIR /data
# Port utilisé par l'UI d'installation et par l'app
EXPOSE 8080
# Pas d'ENTRYPOINT: on pilote via 'command' dans docker-compose