2020-08-29 16:20:01 +01:00
|
|
|
name: 'Docker Extract'
|
|
|
|
|
description: 'Extract file(s) from a Docker Image'
|
|
|
|
|
author: 'Samuel Ryan <sam@samryan.co.uk>'
|
|
|
|
|
inputs:
|
|
|
|
|
image:
|
|
|
|
|
description: 'Docker Image to extract files from'
|
|
|
|
|
required: true
|
|
|
|
|
path:
|
|
|
|
|
description: 'Path (from root) to a file or directory within Image'
|
|
|
|
|
required: true
|
2023-08-19 00:37:38 +03:00
|
|
|
destination:
|
|
|
|
|
description: 'Destination path for the extracted files'
|
|
|
|
|
required: false
|
2024-02-03 19:09:42 -05:00
|
|
|
shell_command:
|
|
|
|
|
description: 'The shell command to execute, defaults to `/bin/bash -c`'
|
|
|
|
|
required: false
|
2020-08-29 16:20:01 +01:00
|
|
|
outputs:
|
|
|
|
|
destination:
|
|
|
|
|
description: 'Destination of extracted file(s)'
|
|
|
|
|
runs:
|
2023-09-12 23:21:29 +02:00
|
|
|
using: 'node20'
|
2020-08-29 16:20:01 +01:00
|
|
|
main: 'dist/index.js'
|
|
|
|
|
branding:
|
|
|
|
|
icon: 'scissors'
|
|
|
|
|
color: 'blue'
|