mirror of
https://github.com/mtan93/homeassistant-addons.git
synced 2026-03-08 05:21:51 +00:00
24 lines
803 B
Plaintext
24 lines
803 B
Plaintext
FROM hassioaddons/base-python
|
|
ENV LANG C.UTF-8
|
|
|
|
# Add poetry # TODO: Get rid of the overhead
|
|
RUN curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python -
|
|
ENV PATH=$HOME/.poetry/bin/:${PATH}
|
|
RUN poetry config virtualenvs.create false
|
|
|
|
# Calls for a random number to bust the cache
|
|
# (https://stackoverflow.com/questions/35134713/disable-cache-for-specific-run-commands/58801213#58801213)
|
|
ADD "https://www.random.org/cgi-bin/randbyte?nbytes=10&format=h" skipcache
|
|
|
|
# add source and unpack
|
|
ADD "https://github.com/MaxWinterstein/toogoodtogo-ha-mqtt-bridge/archive/v1.3.0.tar.gz" /src.tar.gz
|
|
RUN mkdir /app && tar xvfz /src.tar.gz -C /app --strip-components=1
|
|
|
|
# install
|
|
WORKDIR /app
|
|
RUN poetry install --no-dev
|
|
|
|
COPY run.sh /
|
|
RUN chmod a+x /run.sh
|
|
CMD [ "/run.sh" ]
|