Mercurial > public > ssdt-docker
comparison 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 |
comparison
equal
deleted
inserted
replaced
1:44f401c902ba | 90:63cb9be89a26 |
---|---|
1 FROM ubuntu:latest | |
2 | |
3 MAINTAINER Dave Smith smith@nwoca.org | |
4 | |
5 ENV SSDT_HOME=/ssdt \ | |
6 SSDT_DOCKER=http://hg.ssdt-ohio.org/public/ssdt-docker/ | |
7 | |
8 RUN apt-get update -y | |
9 | |
10 RUN apt-get install -y mercurial \ | |
11 && apt-get install -y curl \ | |
12 && apt-get install -y vim \ | |
13 && apt-get install -y nano \ | |
14 && apt-get install -y telnet | |
15 | |
16 COPY ./docker-entrypoint.sh / | |
17 | |
18 RUN chmod a+x ./docker-entrypoint.sh | |
19 | |
20 ENTRYPOINT ["/docker-entrypoint.sh"] | |
21 |