Files
volvo2mqtt/src/Dockerfile
T
Linus DietzandGitHub 34a0b9b2a7 Optimize logging (#41)
* Move print statements to logger

* Add external log location for addon usage

* Add more detailed logs for debug

* Bump version
2023-06-30 11:16:57 +02:00

21 lines
551 B
Docker

ARG BUILD_FROM
FROM $BUILD_FROM
# Install requirements for add-on
RUN apk add --no-cache python3 bash py3-pip
# set the working directory in the container
WORKDIR /volvoAAOS2mqtt
# download requirements.txt
RUN wget --no-cache https://raw.githubusercontent.com/Dielee/volvo2mqtt/main/requirements.txt
# install dependencies
RUN pip install -r requirements.txt
# copy the content of the local src directory to the working directory
COPY / .
RUN chmod a+x /volvoAAOS2mqtt/run.sh
# command to run on container start
CMD [ "/volvoAAOS2mqtt/run.sh" ]