view utils/Dockerfile @ 433:04216320f537

fix url's for archived debian versions
author davis@ssdt-ohio.org
date Wed, 27 Sep 2023 13:23:20 -0400
parents 39744e37d25a
children 5f74a8276898
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 strace -f 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"]