Add testasset

This commit is contained in:
Daniel Kluge
2023-10-31 14:02:46 +01:00
parent 5e58f84b38
commit 948aa78324
4 changed files with 48 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
FROM python:3-alpine
WORKDIR /usr/src/app
ENV AM_I_IN_A_DOCKER_CONTAINER Yes
RUN pip install --no-cache-dir paho-mqtt
COPY testasset.py .
CMD [ "python", "./testasset.py" ]