Files
docker-ception/Dockerfile
Tommy Parnell 33f642c127 init
2017-02-23 12:23:28 -05:00

18 lines
467 B
Docker

FROM ubuntu:trusty
RUN apt-get update
RUN apt-get install -y --no-install-recommends \
apt-transport-https \
ca-certificates \
curl \
software-properties-common
RUN curl -fsSL https://apt.dockerproject.org/gpg | sudo apt-key add -
RUN add-apt-repository \
"deb https://apt.dockerproject.org/repo/ \
ubuntu-$(lsb_release -cs) \
main"
RUN apt-get update
RUN apt-get -y install docker-engine
ADD start.sh .
ENTRYPOINT ./start.sh