diff --git a/.DS_Store b/.DS_Store index e5f001e..9d43c67 100644 Binary files a/.DS_Store and b/.DS_Store differ diff --git a/.gitmodules b/.gitmodules index ee981f5..e69de29 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +0,0 @@ -[submodule "infra"] - path = infra - url = https://github.com/beppevanrolleghem/stage-infra diff --git a/infra b/infra deleted file mode 160000 index 7938666..0000000 --- a/infra +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 7938666913047455c7864e47fca80700f22acd66 diff --git a/src/app.py b/src/app.py index 621588e..eb89df2 100644 --- a/src/app.py +++ b/src/app.py @@ -21,4 +21,4 @@ def get(): if __name__ == '__main__': - app.run(debug=True, host="0.0.0.0", port=6000) + app.run(debug=True, host="0.0.0.0", port=80) diff --git a/src/dockerfile b/src/dockerfile index 643443f..62c5399 100644 --- a/src/dockerfile +++ b/src/dockerfile @@ -4,7 +4,7 @@ copy . /app workdir /app run pip install -r requirements.txt -expose 7000 +expose 80 entrypoint [ "python" ] cmd [ "app.py" ] \ No newline at end of file