Fixed merging bug in app.py

This commit is contained in:
msinkec 2021-03-10 20:01:21 +01:00
parent 613d1a56ed
commit ddd61751f0
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ COPY config.ini /usr/src/portal-webapp/
COPY templates /usr/src/portal-webapp/templates
COPY static /usr/src/portal-webapp/static
COPY contract/ /usr/src/portal-webapp/contract
COPY portal/ /usr/src/portal-webapp/contract
COPY portal/ /usr/src/portal-webapp/portal
WORKDIR /usr/src/portal-webapp
RUN apt-get update && apt-get -y install wkhtmltopdf && \

2
app.py
View File

@ -81,7 +81,7 @@ app.config.update(
dropzone = Dropzone(app)
@app.route(URL_ROOT)
@app.route('/')
def index():
return render_template('index.html')