docsearch-scraper/entrypoint.sh
2021-07-06 05:21:47 -04:00

9 lines
273 B
Bash
Executable File

#!/bin/sh
# https://docs.github.com/en/actions/creating-actions/dockerfile-support-for-github-actions
cd /root
# `$*` expands the `args` supplied in an `array` individually
# or splits `args` in a string separated by whitespace.
sh -c "pipenv run python -m src.index $*"