Initial Set-Up done

This commit is contained in:
2021-06-07 17:41:23 +02:00
parent c1e8b31910
commit 13641cedca
3 changed files with 43 additions and 5 deletions

View File

@@ -1,5 +1,5 @@
#$ docker build -t my-python-app .
#$ docker run -it --rm --name my-running-app my-python-app
#$ docker build -t bsh-gateway .
#$ docker run -it --rm --name my-bsh-gateway bsh-gateway
FROM python:3
@@ -10,4 +10,4 @@ RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD [ "python", "./BSHGateWay.py" ]
CMD ["python","-u","./BSHGateWay.py"]