Created
June 8, 2014 21:36
-
-
Save JerryPreissler/ebde60728ed76c990ac5 to your computer and use it in GitHub Desktop.
Dockerfile to set up Typesafe Activator in a Docker image
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
# requires https://gist.github.com/JerryPreissler/40df842eb5ac48644479 | |
FROM jerry/javadev | |
MAINTAINER Jerry Preissler, [email protected] | |
RUN \ | |
wget --directory-prefix=/tmp http://downloads.typesafe.com/typesafe-activator/1.2.2/typesafe-activator-1.2.2.zip && \ | |
cd /opt && unzip /tmp/*.zip && \ | |
chmod ugo+x $(ls -d -1 $PWD/**)/activator && \ | |
echo "export PATH=$PATH:"$(ls -d -1 $PWD/**) >> /home/develop/.profile | |
RUN \ | |
chown develop:develop /home/develop/.profile |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment