Mercurial > public > ssdt-docker
view utils/Dockerfile @ 82:b2deadc0cf17
USPSR-2298 Update usps db image to ssdt-postgres:3
author | Matt Calmes <calmes@nwoca.org> |
---|---|
date | Thu, 25 Aug 2016 16:19:15 +0100 |
parents | 541766977a11 |
children | b997ad087ac1 |
line wrap: on
line source
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 VOLUME /ssdt COPY ./docker-entrypoint.sh / RUN chmod a+x ./docker-entrypoint.sh ENTRYPOINT ["/docker-entrypoint.sh"]