init
This commit is contained in:
18
Dockerfile
Normal file
18
Dockerfile
Normal file
@@ -0,0 +1,18 @@
|
||||
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
|
||||
Reference in New Issue
Block a user