primo caricamento

This commit is contained in:
andrea castagnino 2026-08-27 12:28:06 +02:00
commit d30984adfe
15 changed files with 658 additions and 0 deletions

11
concentratore/Dockerfile Normal file
View file

@ -0,0 +1,11 @@
ARG BUILD_FROM
FROM $BUILD_FROM
# Serve solo Python: il concentratore non usa librerie esterne
RUN apk add --no-cache python3
COPY concentratore.py /concentratore.py
COPY run.sh /run.sh
RUN chmod a+x /run.sh
CMD [ "/run.sh" ]