annotate utils/Dockerfile @ 85:8f45c43ea7a4 feature/djs-DEP-12-docker

DEP-12: start upgrading scripts and compose files for RC and docker 1.12
author Dave Smith <smith@nwoca.org>
date Wed, 21 Sep 2016 19:00:41 -0400
parents 541766977a11
children b997ad087ac1
rev   line source
10
c9a3e1f8d500 add sample compose file
smith@nwoca.org
parents:
diff changeset
1 FROM ubuntu:latest
c9a3e1f8d500 add sample compose file
smith@nwoca.org
parents:
diff changeset
2
c9a3e1f8d500 add sample compose file
smith@nwoca.org
parents:
diff changeset
3 MAINTAINER Dave Smith smith@nwoca.org
c9a3e1f8d500 add sample compose file
smith@nwoca.org
parents:
diff changeset
4
14
5643072a1af9 DEP-7: formalize ssdt-utils image. add template preview usas compose file
smith@nwoca.org
parents: 10
diff changeset
5 ENV SSDT_HOME=/ssdt \
5643072a1af9 DEP-7: formalize ssdt-utils image. add template preview usas compose file
smith@nwoca.org
parents: 10
diff changeset
6 SSDT_DOCKER=http://hg.ssdt-ohio.org/public/ssdt-docker/
5643072a1af9 DEP-7: formalize ssdt-utils image. add template preview usas compose file
smith@nwoca.org
parents: 10
diff changeset
7
10
c9a3e1f8d500 add sample compose file
smith@nwoca.org
parents:
diff changeset
8 RUN apt-get update -y
c9a3e1f8d500 add sample compose file
smith@nwoca.org
parents:
diff changeset
9
c9a3e1f8d500 add sample compose file
smith@nwoca.org
parents:
diff changeset
10 RUN apt-get install -y mercurial \
c9a3e1f8d500 add sample compose file
smith@nwoca.org
parents:
diff changeset
11 && apt-get install -y curl \
c9a3e1f8d500 add sample compose file
smith@nwoca.org
parents:
diff changeset
12 && apt-get install -y vim \
74
541766977a11 add script to connect to telnet console of usxsapp
smith@nwoca.org
parents: 14
diff changeset
13 && apt-get install -y nano \
541766977a11 add script to connect to telnet console of usxsapp
smith@nwoca.org
parents: 14
diff changeset
14 && apt-get install -y telnet
14
5643072a1af9 DEP-7: formalize ssdt-utils image. add template preview usas compose file
smith@nwoca.org
parents: 10
diff changeset
15
5643072a1af9 DEP-7: formalize ssdt-utils image. add template preview usas compose file
smith@nwoca.org
parents: 10
diff changeset
16 VOLUME /ssdt
5643072a1af9 DEP-7: formalize ssdt-utils image. add template preview usas compose file
smith@nwoca.org
parents: 10
diff changeset
17
5643072a1af9 DEP-7: formalize ssdt-utils image. add template preview usas compose file
smith@nwoca.org
parents: 10
diff changeset
18 COPY ./docker-entrypoint.sh /
5643072a1af9 DEP-7: formalize ssdt-utils image. add template preview usas compose file
smith@nwoca.org
parents: 10
diff changeset
19
5643072a1af9 DEP-7: formalize ssdt-utils image. add template preview usas compose file
smith@nwoca.org
parents: 10
diff changeset
20 RUN chmod a+x ./docker-entrypoint.sh
5643072a1af9 DEP-7: formalize ssdt-utils image. add template preview usas compose file
smith@nwoca.org
parents: 10
diff changeset
21
5643072a1af9 DEP-7: formalize ssdt-utils image. add template preview usas compose file
smith@nwoca.org
parents: 10
diff changeset
22 ENTRYPOINT ["/docker-entrypoint.sh"]
5643072a1af9 DEP-7: formalize ssdt-utils image. add template preview usas compose file
smith@nwoca.org
parents: 10
diff changeset
23