Mercurial > public > ssdt-docker
view utils/Dockerfile @ 608:5cb80996e4d5 tip
fix name of ipdp install, add backup/restore/update scripts
author | Justin Kleinknecht <justin.kleinknecht@mcoecn.org> |
---|---|
date | Tue, 01 Jul 2025 21:00:04 +0100 |
parents | 67bb49975a2c |
children |
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"]