Commit 68f8582f0453d7a845e055acb3ab9f551e6d3cd5

Authored by Antoine Goutenoir
1 parent f47a875d
Exists in master

Add a tentative Dockerfile.

After lots of hacking around, everything is broken now.  \o/
Showing 2 changed files with 9 additions and 0 deletions   Show diff stats
Dockerfile 0 → 100644
... ... @@ -0,0 +1,9 @@
  1 +FROM python:2.7
  2 +ADD . /app
  3 +WORKDIR /app
  4 +RUN pip install -r requirements.txt
  5 +ENV FLASK_APP "flaskr"
  6 +ENV FLASK_ENV "production"
  7 +ENV FLASK_RUN_EXTRA_FILES "content.yml"
  8 +#CMD flask run
  9 +CMD python web/wsgi.py
0 10 \ No newline at end of file
... ...
tests/__init__.py 0 → 100644