annotate utils/Dockerfile @ 438:5308c6fb1028

USASR-5154 try running before getting version
author belknapSSDT <zach.belknap@mcoecn.org>
date Wed, 27 Sep 2023 13:29:53 -0400
parents fc7753d58b24
children 67bb49975a2c
rev   line source
438
5308c6fb1028 USASR-5154 try running before getting version
belknapSSDT <zach.belknap@mcoecn.org>
parents: 437
diff changeset
1 RUN sudo mkdir -p /etc/apt/keyrings \
5308c6fb1028 USASR-5154 try running before getting version
belknapSSDT <zach.belknap@mcoecn.org>
parents: 437
diff changeset
2 && sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor --yes -o /etc/apt/keyrings/docker.gpg \
5308c6fb1028 USASR-5154 try running before getting version
belknapSSDT <zach.belknap@mcoecn.org>
parents: 437
diff changeset
3 && sudo chmod a+r /etc/apt/keyrings/docker.gpg
5308c6fb1028 USASR-5154 try running before getting version
belknapSSDT <zach.belknap@mcoecn.org>
parents: 437
diff changeset
4
430
31ab0993c5ed USASR-5154 revert
belknapSSDT <zach.belknap@mcoecn.org>
parents: 429
diff changeset
5 FROM ubuntu:latest
10
c9a3e1f8d500 add sample compose file
smith@nwoca.org
parents:
diff changeset
6
c9a3e1f8d500 add sample compose file
smith@nwoca.org
parents:
diff changeset
7 MAINTAINER Dave Smith smith@nwoca.org
c9a3e1f8d500 add sample compose file
smith@nwoca.org
parents:
diff changeset
8
14
5643072a1af9 DEP-7: formalize ssdt-utils image. add template preview usas compose file
smith@nwoca.org
parents: 10
diff changeset
9 ENV SSDT_HOME=/ssdt \
5643072a1af9 DEP-7: formalize ssdt-utils image. add template preview usas compose file
smith@nwoca.org
parents: 10
diff changeset
10 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
11
435
644cf7c83cb2 USASR-5154 try adding keys
belknapSSDT <zach.belknap@mcoecn.org>
parents: 432
diff changeset
12
644cf7c83cb2 USASR-5154 try adding keys
belknapSSDT <zach.belknap@mcoecn.org>
parents: 432
diff changeset
13 RUN apt-get update -y
10
c9a3e1f8d500 add sample compose file
smith@nwoca.org
parents:
diff changeset
14
c9a3e1f8d500 add sample compose file
smith@nwoca.org
parents:
diff changeset
15 RUN apt-get install -y mercurial \
c9a3e1f8d500 add sample compose file
smith@nwoca.org
parents:
diff changeset
16 && apt-get install -y curl \
c9a3e1f8d500 add sample compose file
smith@nwoca.org
parents:
diff changeset
17 && apt-get install -y vim \
74
541766977a11 add script to connect to telnet console of usxsapp
smith@nwoca.org
parents: 14
diff changeset
18 && apt-get install -y nano \
541766977a11 add script to connect to telnet console of usxsapp
smith@nwoca.org
parents: 14
diff changeset
19 && 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
20
5643072a1af9 DEP-7: formalize ssdt-utils image. add template preview usas compose file
smith@nwoca.org
parents: 10
diff changeset
21 COPY ./docker-entrypoint.sh /
5643072a1af9 DEP-7: formalize ssdt-utils image. add template preview usas compose file
smith@nwoca.org
parents: 10
diff changeset
22
5643072a1af9 DEP-7: formalize ssdt-utils image. add template preview usas compose file
smith@nwoca.org
parents: 10
diff changeset
23 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
24
5643072a1af9 DEP-7: formalize ssdt-utils image. add template preview usas compose file
smith@nwoca.org
parents: 10
diff changeset
25 ENTRYPOINT ["/docker-entrypoint.sh"]
5643072a1af9 DEP-7: formalize ssdt-utils image. add template preview usas compose file
smith@nwoca.org
parents: 10
diff changeset
26