1
0
mirror of https://github.com/tektoncd/catalog.git synced 2024-11-25 06:17:50 +00:00
catalog/task/dockerslim-build/0.1
2022-02-03 06:30:06 +00:00
..
samples Adds dockerslim-build sample task & test 2022-02-03 06:30:06 +00:00
tests Adds dockerslim-build sample task & test 2022-02-03 06:30:06 +00:00
dockerslim-build.yaml Adds dockerslim-build sample task & test 2022-02-03 06:30:06 +00:00
README.md Adds dockerslim-build sample task & test 2022-02-03 06:30:06 +00:00

Docker

Dockerslim-Build

The Dockerslim Build task builds source into a container image using Dockerslim. This command executes the directives in the Dockerfile to assemble a container image, then pushes that image to a container registry.

Install the Docker Build Task

kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/dockerslim-build/0.1/dockerslim-build.yaml

Parameters

  • image: The name (reference) of the image to build.
  • builder_image: The name of the image containing the Dockerslim tool. See note below. (default: docker.io/docker:latest)
  • push_image: The name of the image containing the Docker tool. See note below. (default: docker.io/docker:latest)
  • dind_image: The name of the image used by docker-in-docker sidecar container (default: docker:dind).
  • dockerfile: The path to the Dockerfile to execute (default: ./Dockerfile)
  • context: Path to the directory to use as context (default: .)
  • push_extra_args: Extra parameters passed for the push command when pushing images. (default: "")

Workspaces

  • source: A Workspace volume containing the source to build.

Platforms

The Task can be run on linux/amd64 platform.

Usage

apiVersion: tekton.dev/v1beta1
kind: TaskRun
metadata:
  name: docker
spec:
  params:
  - name: image
    value: localhost:5000/squid
  taskRef:
    name: dockerslim-build
  workspaces:
  - name: source
    persistentVolumeClaim:
      claimName: docker-source-pvc