remove submodule

This commit is contained in:
2020-03-16 16:09:04 +01:00
parent 58b651a786
commit dd45eb222f
4 changed files with 3 additions and 5 deletions

1
infra

Submodule infra deleted from e05b588517

View File

@@ -6,7 +6,7 @@ app = Flask(__name__)
@app.route('/')
def doRequest():
data = {
"serverName": "serverB",
"serverName": "backend-server",
"version": "master",
"success": "true"
}
@@ -14,4 +14,4 @@ def doRequest():
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)

View File

@@ -4,7 +4,7 @@ copy . /app
workdir /app
run pip install -r requirements.txt
expose 6000
expose 80
entrypoint [ "python" ]
cmd [ "app.py" ]

Submodule stage-infra deleted from 7938666913