mirror of
https://github.com/vmware-tanzu/pinniped.git
synced 2026-01-10 16:01:04 +00:00
Bumps debian from 12.11-slim to 13.0-slim. --- updated-dependencies: - dependency-name: debian dependency-version: 13.0-slim dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
18 lines
979 B
Docker
18 lines
979 B
Docker
# Copyright 2020-2024 the Pinniped contributors. All Rights Reserved.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
# We would like to use https://github.com/cfmobile/pool-trigger-resource for our pool recycle jobs.
|
|
# Unfortuntely, the pool-trigger-resource repo seems like it is not maintained by anyone. The most recent
|
|
# commit was six years ago. On the other hand, its implementation is a shell script which basically
|
|
# just calls some git commands, so it shouldn't need much maintaince if it works.
|
|
# This is an updated version of https://github.com/cfmobile/pool-trigger-resource/blob/master/Dockerfile
|
|
# to use newer versions of linux, jq, and git. The "assets" directory's source code is copied from
|
|
# https://github.com/cfmobile/pool-trigger-resource/tree/master/assets as of commit efefe018c88e937.
|
|
|
|
FROM debian:13.0-slim
|
|
|
|
RUN apt-get update && apt-get install -y ca-certificates jq git && rm -rf /var/lib/apt/lists/*
|
|
|
|
ADD assets/ /opt/resource/
|
|
RUN chmod +rx /opt/resource/*
|