Mercurial > public > ssdt-docker
annotate utils/Dockerfile @ 605:46a67e7afd98 release/2.23.0 tip
flow: Created branch 'release/2.23.0'.
author | Marc Davis <marc.davis@mcoecn.org> |
---|---|
date | Wed, 18 Sep 2024 20:38:06 -0400 |
parents | 67bb49975a2c |
children |
rev | line source |
---|---|
430 | 1 FROM ubuntu:latest |
10 | 2 |
3 MAINTAINER Dave Smith smith@nwoca.org | |
4 | |
14
5643072a1af9
DEP-7: formalize ssdt-utils image. add template preview usas compose file
smith@nwoca.org
parents:
10
diff
changeset
|
5 ENV SSDT_HOME=/ssdt \ |
5643072a1af9
DEP-7: formalize ssdt-utils image. add template preview usas compose file
smith@nwoca.org
parents:
10
diff
changeset
|
6 SSDT_DOCKER=http://hg.ssdt-ohio.org/public/ssdt-docker/ |
5643072a1af9
DEP-7: formalize ssdt-utils image. add template preview usas compose file
smith@nwoca.org
parents:
10
diff
changeset
|
7 |
435
644cf7c83cb2
USASR-5154 try adding keys
belknapSSDT <zach.belknap@mcoecn.org>
parents:
432
diff
changeset
|
8 RUN apt-get update -y |
10 | 9 |
10 RUN apt-get install -y mercurial \ | |
11 && apt-get install -y curl \ | |
12 && apt-get install -y vim \ | |
74
541766977a11
add script to connect to telnet console of usxsapp
smith@nwoca.org
parents:
14
diff
changeset
|
13 && apt-get install -y nano \ |
541766977a11
add script to connect to telnet console of usxsapp
smith@nwoca.org
parents:
14
diff
changeset
|
14 && apt-get install -y telnet |
14
5643072a1af9
DEP-7: formalize ssdt-utils image. add template preview usas compose file
smith@nwoca.org
parents:
10
diff
changeset
|
15 |
5643072a1af9
DEP-7: formalize ssdt-utils image. add template preview usas compose file
smith@nwoca.org
parents:
10
diff
changeset
|
16 COPY ./docker-entrypoint.sh / |
5643072a1af9
DEP-7: formalize ssdt-utils image. add template preview usas compose file
smith@nwoca.org
parents:
10
diff
changeset
|
17 |
5643072a1af9
DEP-7: formalize ssdt-utils image. add template preview usas compose file
smith@nwoca.org
parents:
10
diff
changeset
|
18 RUN chmod a+x ./docker-entrypoint.sh |
5643072a1af9
DEP-7: formalize ssdt-utils image. add template preview usas compose file
smith@nwoca.org
parents:
10
diff
changeset
|
19 |
5643072a1af9
DEP-7: formalize ssdt-utils image. add template preview usas compose file
smith@nwoca.org
parents:
10
diff
changeset
|
20 ENTRYPOINT ["/docker-entrypoint.sh"] |
5643072a1af9
DEP-7: formalize ssdt-utils image. add template preview usas compose file
smith@nwoca.org
parents:
10
diff
changeset
|
21 |