added EKKO report

This commit is contained in:
Nico Melone
2024-10-04 18:53:54 -05:00
parent 6db3e90fc1
commit ac8f419707
8583 changed files with 1808733 additions and 207 deletions

16
RPi Docker/Dockerfile Normal file
View File

@@ -0,0 +1,16 @@
FROM alpine:3.15
RUN apk update && apk upgrade
# This hack is widely applied to avoid python printing issues in docker containers.
# See: https://github.com/Docker-Hub-frolvlad/docker-alpine-python3/pull/13
ENV PYTHONUNBUFFERED=1
RUN apk add --no-cache python2 && \
python -m ensurepip && \
rm -r /usr/lib/python*/ensurepip && \
pip install --upgrade pip setuptools && \
rm -r /root/.cache
RUN pip install pyserial
RUN mkdir -p /root
ADD python_firmware /root/python_firmware/
WORKDIR /root/python_firmware
CMD ["python2.7", "-u", "main.py"]