Mercurial > public > ssdt-docker
view utils/Dockerfile @ 371:b371970462c3 production v2.10.0
DEP-21 update update-inventory-app.sh to pull inventory-importapp image
author | Matt Calmes <calmes@ssdt-ohio.org> |
---|---|
date | Sun, 29 Aug 2021 19:09:33 -0400 |
parents | b997ad087ac1 |
children | 35fc94e4e080 |
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 COPY ./docker-entrypoint.sh / RUN chmod a+x ./docker-entrypoint.sh ENTRYPOINT ["/docker-entrypoint.sh"]