Skip to content
This repository has been archived by the owner on Feb 13, 2024. It is now read-only.

Fix missing dependency #582

Merged
merged 2 commits into from
Oct 9, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions config/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ RUN echo "http://dl-4.alpinelinux.org/alpine/latest-stable/community" >> /etc/ap
##########################################################################################
# Retrieve the CloudFoundry CLI
##########################################################################################
FROM --platform=linux/amd64 cloudfoundry/cli:8.6.1 as cf_cli
FROM --platform=linux/amd64 cloudfoundry/cli:8.7.3 as cf_cli

##########################################################################################
## Retrieve the SAP btp CLI
Expand Down Expand Up @@ -74,10 +74,7 @@ RUN apk update upgrade \
FROM base as utilities
SHELL ["/bin/ash", "-eo", "pipefail", "-c"]
WORKDIR /tmp/tools
ENV VER_FX=24.1.0
ENV VER_IJQ=0.4.1
RUN curl -fsSL -o fx --url "https://github.com/antonmedv/fx/releases/download/${VER_FX}/fx_${ARCH//-/_}" \
&& chmod +x fx
RUN curl -fsSL --url "https://git.sr.ht/~gpanders/ijq/refs/download/v${VER_IJQ}/ijq-${VER_IJQ}-${ARCH}.tar.gz" \
| tar --extract -z --file - --strip-components 1 "ijq-${VER_IJQ}/ijq"

Expand Down Expand Up @@ -163,7 +160,6 @@ COPY --chown=root:root --from=tools /usr/local/bin/btp /usr/local/bin
COPY --chown=root:root --from=tools /usr/local/bin/mbt /usr/local/bin
COPY --chown=root:root --from=tools /usr/local/bin/kubectl /usr/local/bin
COPY --chown=root:root --from=tools /usr/local/bin/helm /usr/local/bin
COPY --chown=root:root --from=tools /usr/local/bin/fx /usr/local/bin
COPY --chown=root:root --from=tools /usr/local/bin/ijq /usr/local/bin

## Install the CF plugin for deploying MTAs on Cloudfoundry
Expand Down