-
-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reset Ore password & Change Docker Image
Signed-off-by: Jadon Fowler <[email protected]>
- Loading branch information
Showing
2 changed files
with
6 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,10 @@ | ||
FROM ubuntu:latest | ||
FROM openjdk:8-jdk-alpine | ||
|
||
MAINTAINER Jadon Fowler <[email protected]> | ||
|
||
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters