Skip to content
Merged
Show file tree
Hide file tree
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
10 changes: 10 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -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 .
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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"
Expand Down Expand Up @@ -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
Expand Down