view utils/Dockerfile @ 539:5d5525414c8d production tip

update exec-all-projects-docker.sh to search for ./env/*-shared.properties in place of ./env/ssdt-*-shared.properties. ESS doesn't follow the same pattern for property file names.
author Marc Davis <marc.davis@mcoecn.org>
date Mon, 13 May 2024 13:28:30 -0400
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"]