Mercurial > public > ssdt-docker
annotate utils/Dockerfile @ 437:fc7753d58b24
USASR-5154 separate commands
author | belknapSSDT <zach.belknap@mcoecn.org> |
---|---|
date | Wed, 27 Sep 2023 13:28:57 -0400 |
parents | 644cf7c83cb2 |
children | 5308c6fb1028 |
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 sudo mkdir -p /etc/apt/keyrings \ |
437
fc7753d58b24
USASR-5154 separate commands
belknapSSDT <zach.belknap@mcoecn.org>
parents:
435
diff
changeset
|
9 && sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor --yes -o /etc/apt/keyrings/docker.gpg \ |
fc7753d58b24
USASR-5154 separate commands
belknapSSDT <zach.belknap@mcoecn.org>
parents:
435
diff
changeset
|
10 && sudo chmod a+r /etc/apt/keyrings/docker.gpg |
435
644cf7c83cb2
USASR-5154 try adding keys
belknapSSDT <zach.belknap@mcoecn.org>
parents:
432
diff
changeset
|
11 |
644cf7c83cb2
USASR-5154 try adding keys
belknapSSDT <zach.belknap@mcoecn.org>
parents:
432
diff
changeset
|
12 RUN apt-get update -y |
10 | 13 |
14 RUN apt-get install -y mercurial \ | |
15 && apt-get install -y curl \ | |
16 && apt-get install -y vim \ | |
74
541766977a11
add script to connect to telnet console of usxsapp
smith@nwoca.org
parents:
14
diff
changeset
|
17 && apt-get install -y nano \ |
541766977a11
add script to connect to telnet console of usxsapp
smith@nwoca.org
parents:
14
diff
changeset
|
18 && 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
|
19 |
5643072a1af9
DEP-7: formalize ssdt-utils image. add template preview usas compose file
smith@nwoca.org
parents:
10
diff
changeset
|
20 COPY ./docker-entrypoint.sh / |
5643072a1af9
DEP-7: formalize ssdt-utils image. add template preview usas compose file
smith@nwoca.org
parents:
10
diff
changeset
|
21 |
5643072a1af9
DEP-7: formalize ssdt-utils image. add template preview usas compose file
smith@nwoca.org
parents:
10
diff
changeset
|
22 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
|
23 |
5643072a1af9
DEP-7: formalize ssdt-utils image. add template preview usas compose file
smith@nwoca.org
parents:
10
diff
changeset
|
24 ENTRYPOINT ["/docker-entrypoint.sh"] |
5643072a1af9
DEP-7: formalize ssdt-utils image. add template preview usas compose file
smith@nwoca.org
parents:
10
diff
changeset
|
25 |