Skip to content

Commit a0c3ab0

Browse files
committed
Reset Ore password & Change Docker Image
Signed-off-by: Jadon Fowler <jadonflower@gmail.com>
1 parent 5bb3dd0 commit a0c3ab0

2 files changed

Lines changed: 6 additions & 8 deletions

File tree

Dockerfile

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
1-
FROM ubuntu:latest
1+
FROM openjdk:8-jdk-alpine
22

33
MAINTAINER Jadon Fowler <jadonflower@gmail.com>
44

5-
RUN apt-get update
6-
RUN apt-get install -y default-jdk
7-
85
# Install Activator
9-
RUN apt-get install -y unzip curl
6+
RUN apk add curl
7+
RUN apk add unzip
108
RUN curl -O http://downloads.typesafe.com/typesafe-activator/1.3.6/typesafe-activator-1.3.6.zip
119
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
1210
ENV PATH $PATH:/activator-dist-1.3.6

conf/application.conf.template

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -163,9 +163,9 @@ slick.dbs.default {
163163
driver = "org.postgresql.Driver"
164164
url = "jdbc:postgresql://localhost/ore"
165165
url = ${?JDBC_DATABASE_URL}
166-
user = "spongeauth"
166+
user = "root"
167167
user = ${?JDBC_DATABASE_USERNAME}
168-
password = "spongeauth"
168+
password = ""
169169
password = ${?JDBC_DATABASE_PASSWORD}
170170
}
171171
}
@@ -265,4 +265,4 @@ filters {
265265
block-all-mixed-content = []
266266
}
267267
}
268-
}
268+
}

0 commit comments

Comments
 (0)