From 117d938464213f09f3270706f835f70bbe1df80c Mon Sep 17 00:00:00 2001 From: Stephen James Date: Thu, 21 Dec 2023 12:32:29 +0000 Subject: [PATCH] Added the ssm-session-manager-plugin (#8) --- Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 664eb34..6e86bee 100644 --- a/Dockerfile +++ b/Dockerfile @@ -38,6 +38,9 @@ RUN apt-get update \ && unzip awscliv2.zip \ && ./aws/install -i /usr/local/aws-cli -b /usr/local/bin \ && rm awscliv2.zip \ + && curl "https://s3.amazonaws.com/session-manager-downloads/plugin/latest/ubuntu_64bit/session-manager-plugin.deb" -o "session-manager-plugin.deb" \ + && dpkg -i session-manager-plugin.deb \ + && rm -f session-manager-plugin.deb \ && for version in $TF_VERSIONS; do \ tfenv install "$version"; \ - done; \ No newline at end of file + done;