diff options
| author | Georgios Andreadis <g.andreadis@student.tudelft.nl> | 2018-11-09 10:01:33 +0100 |
|---|---|---|
| committer | Georgios Andreadis <g.andreadis@student.tudelft.nl> | 2018-11-09 10:01:33 +0100 |
| commit | 787c2e58e3923dbd0f90ac731518bf7889f7ca9d (patch) | |
| tree | 4a16cdbf780776dfc3cf7ce5021455e20dfd9a2e | |
| parent | dd885a3a802ae4a736b72d0935e0a67353e12bae (diff) | |
Fix web server crash in Docker environment
The current web server fails on my machine when I run the Docker setup. I found out that this was a more common issue with a fix, so I've applied this fix to our setup.
This was the crash: https://github.com/etingof/pyasn1/issues/108
| -rw-r--r-- | Dockerfile | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -6,6 +6,7 @@ RUN echo "deb http://ftp.debian.org/debian stretch main" >> /etc/apt/sources.lis && apt-get update \ && apt-get install -y python python-pip yarn git sed mysql-client \ && pip install oauth2client eventlet flask-socketio flask-compress mysql-connector-python-rf \ + && pip install --upgrade pyasn1-modules \ && rm -rf /var/lib/apt/lists/* # Copy OpenDC directory |
