diff --git a/app/Dockerfile b/app/Dockerfile index c49712d..3da380b 100644 --- a/app/Dockerfile +++ b/app/Dockerfile @@ -21,8 +21,6 @@ RUN sassc ./styles/riotblog.scss > ./styles/riotblog.intermediate.min.css RUN cp ./styles/*.css ./build/styles/ RUN uglifycss ./styles/*.css > ./build/styles/riotblog.min.css -ENV RIOTBLOG_SETTINGS "/src/riotblog_local.cfg" - COPY run.sh /run.sh COPY blogPosts.json /blogPosts.json diff --git a/app/website.py b/app/website.py index bb0ff94..4301960 100755 --- a/app/website.py +++ b/app/website.py @@ -66,9 +66,6 @@ def NeverWhere(configfile=None): #return send_from_directory("/srv/http/goal/favicon.ico", #'favicon.ico', mimetype='image/vnd.microsoft.icon') - print(environ["RIOTBLOG_SETTINGS"]) - app.config.from_envvar('RIOTBLOG_SETTINGS') - @app.route("/blog/styles/") def send_styles(path): return send_from_directory("build/styles", path)