Additional changes to move application to CouchDB database backend. Removed loan files from repository (now in selfhosted couchdb instance).

This commit is contained in:
john
2023-05-14 10:19:04 -04:00
parent c6291c3ab9
commit 5930ad5af1
13 changed files with 49 additions and 1503 deletions

View File

@@ -3,6 +3,6 @@ FROM python:3.8-slim-buster
COPY requirements.txt requirements.txt
RUN pip3 install -r requirements.txt
COPY . .
COPY mortgage/ .
CMD [ "python3", "-m" , "flask", "run", "--host=0.0.0.0"]
CMD [ "python3", "-m" , "web", "run", "--host=0.0.0.0"]