Last active
August 29, 2015 14:10
-
-
Save akira1908jp/1315e42542463dffe2f5 to your computer and use it in GitHub Desktop.
docker on App::revealup
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
FROM debian | |
MAINTAINER akira1908jp <[email protected]> | |
RUN apt-get upgrade -y | |
RUN apt-get update -y | |
RUN apt-get install curl git -y | |
RUN apt-get clean | |
ENTRYPOINT curl -L http://is.gd/plenvsetup | bash | |
ENTRYPOINT . ~/.bash_profile | |
ENTRYPOINT plenv install-cpanm | |
ENTRYPOINT cpanm install App::revealup | |
EXPOSE 5000 | |
ENTRYPOINT ["revealup serve --port 5000"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment