Skip to content
This repository was archived by the owner on Mar 12, 2025. It is now read-only.

Commit e6c99b6

Browse files
authored
Merge pull request #8 from mintel/add_binaries_for_sshkeypair_module
Adding packages required by ssh-keypair-secret tf module
2 parents 7286923 + 03b93ea commit e6c99b6

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

Dockerfile

+8-1
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,16 @@ FROM hashicorp/tfc-agent:1.2.0
22

33
USER root
44

5-
RUN apt-get update && apt-get install -y \
5+
ARG DEBIAN_FRONTEND=noninteractive
6+
7+
RUN apt-get update && \
8+
apt-get -y upgrade && \
9+
apt-get install -y \
610
curl \
11+
default-jre \
712
git \
13+
openssl \
14+
pwgen \
815
unzip \
916
zip \
1017
&& rm -rf /var/lib/apt/lists/*

0 commit comments

Comments
 (0)