Files
ThingsBoard/IG502 Docker/Dockerfile
2025-03-04 14:52:32 -06:00

9 lines
313 B
Docker

FROM python:3.10-bullseye
# This hack is widely applied to avoid python printing issues in docker containers.
# See: https://github.com/Docker-Hub-frolvlad/docker-alpine-python3/pull/13
ENV PYTHONUNBUFFERED=1
ADD device_supervisor ./device_supervisor
WORKDIR ./device_supervisor/
CMD ["python", "-u", "run.py"]