WORKDIR /app
RUN ["pip", "install", "-r", "requirements.txt"]
-RUN ["useradd", "--no-create-home", "failover"]
+# Container must run as root. :/
+#RUN ["useradd", "--no-create-home", "failover"]
#USER failover:failover
ENTRYPOINT ["python3.7", "-u", "./main.py"]