adds structure for virtual environment uwsgi and http communication

- starts uwsgi and flask in virtual environment instead of docker
- sets oauth2 https error to false (OAUTHLIB_INSECURE_TRANSPORT=1)

- this setup works, but
  - moving it into docker
  -  removing the venv
  -  and allowing https connection internally?
would be better
This commit is contained in:
2020-05-10 20:31:42 +02:00
parent 76a8b97ae4
commit dbb6d170da
43 changed files with 742 additions and 4 deletions

Binary file not shown.

View File

@ -0,0 +1,10 @@
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 -y
RUN pip3 install uwsgi
RUN pip3 install email-validator
RUN pip3 install google google-oauth google-auth-oauthlib google-api-python-client
COPY docker-entrypoint.sh /usr/local/bin/
EXPOSE 8084
ENTRYPOINT ["docker-entrypoint.sh"]

View File

@ -0,0 +1,4 @@
#!/bin/sh
cd /home/calendarwatch
uwsgi --http-socket :8084 --wsgi-file server.py
# python3 app.py

View File

@ -0,0 +1,11 @@
version: '3'
services:
calendarwatch:
build:
context: ./calendarwatch
image: calendarwatch:latest
container_name: calendarwatch
volumes:
- ../:/home/calendarwatch
ports:
- "0.0.0.0:8084:8084"