mirror of
https://github.com/signcl/docsearch-scraper-action.git
synced 2024-11-10 09:39:12 +08:00
15 lines
288 B
Docker
15 lines
288 B
Docker
FROM algolia/docsearch-scraper:latest
|
|
|
|
LABEL maintainer="t@sparanoid.com"
|
|
|
|
# Get rid of /github/home
|
|
# https://stackoverflow.com/a/63144407/412385
|
|
ENV WORKON_HOME /root
|
|
ENV PIPENV_PIPFILE /root/Pipfile
|
|
|
|
RUN pipenv install
|
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|