Skip to content
Please note that GitHub no longer supports your web browser.

We recommend upgrading to the latest Google Chrome or Firefox.

Learn more
Permalink
Browse files

add docker image

  • Loading branch information...
tdurieux committed Oct 2, 2018
1 parent a1e2e41 commit 051d11500aabaa9a4694627c9e73fdebf303ed65
Showing with 12 additions and 1 deletion.
  1. +11 −0 Dockerfile
  2. +1 −1 server.py
@@ -0,0 +1,11 @@
FROM python:3.7.0


ADD server.py /
ADD static /
ADD templates /
ADD requirements.txt /

RUN pip install --requirement requirements.txt

ENTRYPOINT [ "python", "./server.py" ]
@@ -434,7 +434,7 @@ def run(self, **keywords):

def initParser():
parser = argparse.ArgumentParser(description='Start Anonymous Github')
parser.add_argument('-token', required=True, help='GitHuh token')
parser.add_argument('-token', required=True, help='GitHub token')
parser.add_argument('-host', help='The hostname', default="127.0.0.1")
parser.add_argument('-port', help='The port of the application', default=5000)
parser.add_argument('-config_dir', help='The repository that will contains the configuration files',

0 comments on commit 051d115

Please sign in to comment.
You can’t perform that action at this time.