11 lines
229 B
Docker
11 lines
229 B
Docker
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" ]
|