Files
grott-home-assistant-add-on/grott/Dockerfile
T
2023-10-08 05:35:04 +00:00

35 lines
1.0 KiB
Docker

ARG BUILD_FROM=ghcr.io/hassio-addons/base:14.2.1
# 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-r0 && 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 /app/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" ]