Configure docker build

This commit is contained in:
heyarne 2020-05-05 20:56:50 +02:00
commit 321a4c4f57
4 changed files with 26 additions and 3 deletions

View file

@ -26,7 +26,7 @@
(defn -main [& args]
(let [port (env :port 8081)]
(let [port (Integer/parseInt (env :port "8081"))]
(println "Starting server on port" port)
(reset! server (-> #'app
(logger/wrap-with-logger)