diff --git a/Dockerfile b/Dockerfile index ae0e6eaa5..25bdf5aaf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,12 +1,10 @@ -FROM ubuntu:latest +FROM openjdk:8-jdk-alpine MAINTAINER Jadon Fowler -RUN apt-get update -RUN apt-get install -y default-jdk - # Install Activator -RUN apt-get install -y unzip curl +RUN apk add curl +RUN apk add unzip RUN curl -O http://downloads.typesafe.com/typesafe-activator/1.3.6/typesafe-activator-1.3.6.zip RUN unzip typesafe-activator-1.3.6.zip -d / && rm typesafe-activator-1.3.6.zip && chmod a+x /activator-dist-1.3.6/activator ENV PATH $PATH:/activator-dist-1.3.6 diff --git a/conf/application.conf.template b/conf/application.conf.template index 2ca7109f8..30fdd698e 100755 --- a/conf/application.conf.template +++ b/conf/application.conf.template @@ -163,9 +163,9 @@ slick.dbs.default { driver = "org.postgresql.Driver" url = "jdbc:postgresql://localhost/ore" url = ${?JDBC_DATABASE_URL} - user = "spongeauth" + user = "root" user = ${?JDBC_DATABASE_USERNAME} - password = "spongeauth" + password = "" password = ${?JDBC_DATABASE_PASSWORD} } } @@ -265,4 +265,4 @@ filters { block-all-mixed-content = [] } } -} \ No newline at end of file +}