diff --git a/README.md b/README.md index b8ad8a94..5e5f3d37 100644 --- a/README.md +++ b/README.md @@ -58,3 +58,5 @@ Note ---- The voting application only accepts one vote per client. It does not register votes if a vote has already been submitted from a client. + +Stay tuned.... diff --git a/vote/Dockerfile b/vote/Dockerfile index c28587c8..6f18a65d 100644 --- a/vote/Dockerfile +++ b/vote/Dockerfile @@ -11,8 +11,10 @@ RUN pip install -r requirements.txt # Copy our code from the current folder to /app inside the container ADD . /app + # Make port 80 available for links and/or publish EXPOSE 80 # Define our command to be run when launching the container CMD ["gunicorn", "app:app", "-b", "0.0.0.0:80", "--log-file", "-", "--access-logfile", "-", "--workers", "4", "--keep-alive", "0"] + diff --git a/worker/pom.xml b/worker/pom.xml index bed5b39f..9ab205fa 100644 --- a/worker/pom.xml +++ b/worker/pom.xml @@ -3,6 +3,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0 + worker worker 1.0-SNAPSHOT