Skip to content

Instantly share code, notes, and snippets.

@akira1908jp
Last active August 29, 2015 14:10
Show Gist options
  • Save akira1908jp/1315e42542463dffe2f5 to your computer and use it in GitHub Desktop.
Save akira1908jp/1315e42542463dffe2f5 to your computer and use it in GitHub Desktop.
docker on App::revealup
FROM debian
MAINTAINER akira1908jp <akira1908jp@gmail.com>
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