This commit is contained in:
rainer
2022-10-21 16:22:54 +02:00
commit 138c54cd09

18
Dockerfile Normal file
View File

@@ -0,0 +1,18 @@
FROM openhab/openhab:1.8.3
# Update Ubuntu Software repository
RUN apt-get update
# Install some stuff from OS repository
RUN apt-get install -y arping python python-pip && \
rm -rf /var/lib/apt/lists/*
# Some additional Python stuff
RUN pip install paho-mqtt socketIO-client-2
EXPOSE 9123
ENV EXTRA_JAVA_OPTS="-Duser.timezone=Europe/Berlin" \
USER_ID=1002 \
GROUP_ID=1000