Mercurial > public > ssdt-docker
diff utils/Dockerfile @ 90:63cb9be89a26 production v1.0.0
flow: Merged <release> 'v1.0.0' to <master> ('production').
author | smith@nwoca.org |
---|---|
date | Thu, 22 Sep 2016 01:49:20 +0100 |
parents | b997ad087ac1 |
children | 35fc94e4e080 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/utils/Dockerfile Thu Sep 22 01:49:20 2016 +0100 @@ -0,0 +1,21 @@ +FROM ubuntu:latest + +MAINTAINER Dave Smith smith@nwoca.org + +ENV SSDT_HOME=/ssdt \ + SSDT_DOCKER=http://hg.ssdt-ohio.org/public/ssdt-docker/ + +RUN apt-get update -y + +RUN apt-get install -y mercurial \ + && apt-get install -y curl \ + && apt-get install -y vim \ + && apt-get install -y nano \ + && apt-get install -y telnet + +COPY ./docker-entrypoint.sh / + +RUN chmod a+x ./docker-entrypoint.sh + +ENTRYPOINT ["/docker-entrypoint.sh"] +