comparison utils/Dockerfile @ 14:5643072a1af9

DEP-7: formalize ssdt-utils image. add template preview usas compose file
author smith@nwoca.org
date Sun, 27 Dec 2015 19:24:12 +0000
parents c9a3e1f8d500
children 541766977a11
comparison
equal deleted inserted replaced
13:82b5ed864aee 14:5643072a1af9
1 FROM ubuntu:latest 1 FROM ubuntu:latest
2 2
3 MAINTAINER Dave Smith smith@nwoca.org 3 MAINTAINER Dave Smith smith@nwoca.org
4
5 ENV SSDT_HOME=/ssdt \
6 SSDT_DOCKER=http://hg.ssdt-ohio.org/public/ssdt-docker/
4 7
5 RUN apt-get update -y 8 RUN apt-get update -y
6 9
7 RUN apt-get install -y mercurial \ 10 RUN apt-get install -y mercurial \
8 && apt-get install -y curl \ 11 && apt-get install -y curl \
9 && apt-get install -y vim \ 12 && apt-get install -y vim \
10 && apt-get install -y nano 13 && apt-get install -y nano
14
15 VOLUME /ssdt
16
17 COPY ./docker-entrypoint.sh /
18
19 RUN chmod a+x ./docker-entrypoint.sh
20
21 ENTRYPOINT ["/docker-entrypoint.sh"]
22