Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save msmith-techempower/5a5deebdfc9161ffcb1d8f0d045e50ee to your computer and use it in GitHub Desktop.
Save msmith-techempower/5a5deebdfc9161ffcb1d8f0d045e50ee to your computer and use it in GitHub Desktop.
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