Created
January 22, 2018 19:28
-
-
Save msmith-techempower/5a5deebdfc9161ffcb1d8f0d045e50ee to your computer and use it in GitHub Desktop.
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 phusion/baseimage:latest | |
WORKDIR /app | |
ADD . /app | |
CMD ["/sbin/my_init"] | |
EXPOSE 8080 | |
ONBUILD RUN add-apt-repository -y ppa:openjdk-r/ppa \ | |
apt-get update \ | |
apt-get install -qqy openjdk-8-jdk | |
RUN ["/bin/bash", "-c", "echo hello"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment