Skip to content

Instantly share code, notes, and snippets.

@JerryPreissler
Created June 8, 2014 21:36
Show Gist options
  • Save JerryPreissler/ebde60728ed76c990ac5 to your computer and use it in GitHub Desktop.
Save JerryPreissler/ebde60728ed76c990ac5 to your computer and use it in GitHub Desktop.
Dockerfile to set up Typesafe Activator in a Docker image
# 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