use requirements.txt to fix python package versions

Resolve issue with `docker run` not having correct privilege
Closes thiagoralves/OpenPLC_v3#22
This commit is contained in:
T
2019-02-01 16:22:52 +01:00
parent 8099f5a7ce
commit e522282179
3 changed files with 23 additions and 2 deletions

View File

@@ -37,6 +37,6 @@ docker build -t openplc:v3 .
_Devices can be passed to the `docker` daemon using the `-v` flag (e.g. `-v /dev/ttyACM0:/dev/ttyACM0`)_
```bash
docker run -it --rm -p 8080:8080 openplc:v3
docker run -it --rm --privileged -p 8080:8080 openplc:v3
```