ARG BUILD_FROM=ghcr.io/hassio-addons/base:14.1.0 # hadolint ignore=DL3006 FROM $BUILD_FROM ENV LANG C.UTF-8 # Run updates # RUN apt-get clean && apt-get update && apt-get upgrade -y # Set the locale # RUN apt-get install -y locales && locale-gen en_US.UTF-8 # Install python/pip ENV PYTHONUNBUFFERED=1 RUN apk add --update --no-cache python3=3.11.4-r4 && ln -sf python3 /usr/bin/python && python3 -m ensurepip #RUN curl -k https://codeload.github.com/johanmeijer/grott/zip/master --output files.zip && unzip files.zip #RUN unzip files.zip # Copy data for add-on COPY script.sh /app/script.sh RUN chmod a+x script.sh WORKDIR /app RUN curl -Lk 'https://github.com/johanmeijer/grott/archive/refs/heads/master.zip' --output files.zip && unzip -o files.zip && rm files.zip && mv grott-*/*.py ./ # Move the addon RUN mv grott-*/examples/Home\ Assistent/grott_ha.py ./ COPY requirements.txt requirements.txt #Install required python packages RUN pip3 install --no-cache-dir -r requirements.txt CMD [ "./script.sh" ]