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

Commit

Permalink
Fix missing dependency to fx (#582)
Browse files Browse the repository at this point in the history
  • Loading branch information
lechnerc77 authored Oct 9, 2023
1 parent 9f41d1c commit 9b9b1a2
Showing 1 changed file with 1 addition and 5 deletions.
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

0 comments on commit 9b9b1a2

Please sign in to comment.