Skip to content

Releases: into-docker/build-action

into-docker/build-action@v4

Choose a tag to compare

@github-actions github-actions released this 19 Oct 09:54

This it the into-docker build action version v4, allowing you to run any into-docker builder image as a Github Action.

Changes

  • Changed to ubuntu:jammy base image, to fix a segfault on the busybox one.

Basic Usage

- uses: into-docker/build-action@v4
  with:
    image: target-image:latest
    builder: intodocker/clojure

See the README for further options.

into-docker/build-action@v3

Choose a tag to compare

@github-actions github-actions released this 06 Mar 19:03

This it the into-docker build action version v3, allowing you to run any into-docker builder image as a Github Action.

Changes

  • Use into-docker 1.1.5.
  • Introduce platform parameter.

Basic Usage

- uses: into-docker/build-action@v3
  with:
    image: target-image:latest
    builder: intodocker/clojure

See the README for further options.

into-docker/build-action@v2

Choose a tag to compare

@github-actions github-actions released this 06 Apr 06:05

This it the into-docker build action version v2, allowing you to run any into-docker builder image as a Github Action.

Changes

  • Uses into-docker 1.1.1 by default.
  • Uses inline Dockerfile instead of prebuilding the action.
  • More usage examples in README.
  • More verification steps on CI.

Basic Usage

- uses: into-docker/build-action@v2
  with:
    image: target-image:latest
    builder: intodocker/clojure

See the README for further options.

into-docker/build-action@v1

Choose a tag to compare

@github-actions github-actions released this 01 May 14:21

This is the into-docker build action version v1, allowing you to run any into-docker builder image as a Github Action.

Usage

- uses: into-docker/build-action@v1
  with:
    image: target-image:latest
    builder: intodocker/clojure
    cache-path: cache-file.tar

See the README for further options.