File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- FROM ubuntu:latest
1+ FROM openjdk:8-jdk-alpine
22
33MAINTAINER 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
108RUN curl -O http://downloads.typesafe.com/typesafe-activator/1.3.6/typesafe-activator-1.3.6.zip
119RUN unzip typesafe-activator-1.3.6.zip -d / && rm typesafe-activator-1.3.6.zip && chmod a+x /activator-dist-1.3.6/activator
1210ENV PATH $PATH:/activator-dist-1.3.6
Original file line number Diff line number Diff 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+ }
You can’t perform that action at this time.
0 commit comments