code cleanup and comments

This commit is contained in:
2020-07-10 10:11:31 +02:00
parent 016e52f1e7
commit adb20dea14
10 changed files with 27 additions and 162 deletions

View File

@ -2,7 +2,7 @@ FROM python:3.8-slim-buster
RUN apt-get update && apt-get upgrade
RUN pip3 install flask Flask-SQLAlchemy flask_migrate flask_login flask_wtf python-dotenv
RUN apt-get install gcc libpcre3 libpcre3-dev libmariadbclient-dev -y
RUN pip3 install uwsgi email-validator random-word
RUN pip3 install uwsgi email-validator RandomWords
RUN pip3 install google google-oauth google-auth-oauthlib google-api-python-client mysqlclient
COPY docker-entrypoint.sh /usr/local/bin/
EXPOSE 8084