fix issues when building image with dockerfile

Signed-off-by: Luca Stocchi <lstocchi@redhat.com>
This commit is contained in:
Luca Stocchi 2020-11-18 08:24:22 +01:00
parent 1b1386b77e
commit 504c52c4d8
No known key found for this signature in database
GPG key ID: 930BB00F3FCF30A4
5 changed files with 11 additions and 26 deletions

View file

@ -9,18 +9,17 @@ inputs:
description: 'The name (reference) of the image to build'
required: true
base-image:
description: 'The base image to use to create a new container'
description: 'The base image to use to create a new container image'
required: false
dockerfiles:
description: 'The path of one or more Dockerfiles (default: ./Dockerfile)'
description: 'List of Dockerfile paths (eg: ./Dockerfile)'
required: false
default: './Dockerfile'
context:
description: 'Path to the directory to use as context (default: .)'
required: false
default: '.'
content:
description: 'The content to copy inside the base image'
description: 'List of files/directories to copy inside the base image'
required: false
entrypoint:
description: 'The entry point to set for containers based on image'
@ -32,7 +31,7 @@ inputs:
description: 'The working directory to use within the container'
required: false
envs:
description: 'The environment variables to be set when running containers based on image'
description: 'List of environment variables to be set when running containers based on image'
required: false
runs:
using: 'node12'