12345678910111213141516171819202122232425262728 |
- FROM docker:20.10
- WORKDIR /home/librex
- LABEL name="LibreX" \
- description="Framework and javascript free privacy respecting meta search engine" \
- version="1.0" \
- vendor="Hnhx Femboy<femboy.hu>" \
- url="https://github.com/hnhx/librex" \
- usage="https://github.com/hnhx/librex/wiki" \
- authors="https://github.com/hnhx/librex/contributors"
- ARG DOCKER_SCRIPTS=".docker"
- ENV TZ="America/New_York"
- ENV PATH="/docker/bin:$PATH"
- ENV OPENSEARCH_HOST="http://localhost:80"
- ADD "${DOCKER_SCRIPTS}/*" "/docker/"
- ADD "LICENSE" "/docker/LICENSE"
|