From 92cbdb1a4c0ae3617a5f88fd333c3e28a520d997 Mon Sep 17 00:00:00 2001 From: Oliver Feldmann Date: Fri, 28 Jul 2023 10:57:55 +0200 Subject: [PATCH 1/2] Use new debian bookworm base image Also upgraded mta plugin version to latest --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5e71f40..bb3bfc7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM buildpack-deps:bullseye-curl +FROM buildpack-deps:bookworm-curl LABEL org.opencontainers.image.source=https://github.com/SAP/devops-docker-cf-cli LABEL org.opencontainers.image.description="An image for the cf cli" @@ -26,7 +26,7 @@ RUN addgroup -gid 1000 piper && \ USER piper WORKDIR ${USER_HOME} -ARG MTA_PLUGIN_VERSION=3.0.2 +ARG MTA_PLUGIN_VERSION=3.0.3 ARG MTA_PLUGIN_URL=https://github.com/cloudfoundry-incubator/multiapps-cli-plugin/releases/download/v${MTA_PLUGIN_VERSION}/multiapps-plugin.linux64 ARG CSPUSH_PLUGIN_VERSION=1.3.2 ARG CSPUSH_PLUGIN_URL=https://github.com/dawu415/CF-CLI-Create-Service-Push-Plugin/releases/download/${CSPUSH_PLUGIN_VERSION}/CreateServicePushPlugin.linux64 From 9028c8628ad89b14be7d88c27eb6279957a3cbd6 Mon Sep 17 00:00:00 2001 From: Oliver Feldmann Date: Wed, 2 Aug 2023 15:37:15 +0200 Subject: [PATCH 2/2] Build on push to see that it works --- .github/workflows/build.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..111df13 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,10 @@ +on: push +name: Build image +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + - name: Build + run: | + docker build . \ No newline at end of file