Skip to content

Commit

Permalink
updated Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
janpreet committed Aug 8, 2024
1 parent ed90a8e commit b9aa64d
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ RUN apk add --no-cache \
python3 \
py3-pip \
aws-cli \
gnupg \
libsecret \
&& pip3 install --no-cache-dir --upgrade pip

RUN curl -LO "https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_linux_amd64.zip" \
Expand All @@ -21,10 +23,11 @@ RUN curl -L -o /usr/local/bin/opa https://openpolicyagent.org/downloads/latest/o

RUN pip3 install --no-cache-dir ansible==${ANSIBLE_VERSION}

RUN curl -O https://prerelease.keybase.io/keybase_amd64.tar.gz \
&& tar xvf keybase_amd64.tar.gz \
&& mv keybase /usr/local/bin/ \
&& rm keybase_amd64.tar.gz
RUN curl -s https://keybase.io/docs/server_security/code_signing_key.asc | gpg --import \
&& curl -O https://prerelease.keybase.io/keybase_amd64.deb \
&& dpkg -i keybase_amd64.deb \
&& apt-get install -f \
&& rm keybase_amd64.deb

COPY kado /usr/local/bin/kado

Expand All @@ -33,4 +36,4 @@ ENV PATH="/opt/venv/bin:$PATH"
WORKDIR /workspace

#ENTRYPOINT ["tail", "-f", "/dev/null"]
ENTRYPOINT ["/usr/local/bin/kado"]
ENTRYPOINT ["/usr/local/bin/kado"]

0 comments on commit b9aa64d

Please sign in to comment.