squirrel/Dockerfile

15 lines
392 B
Docker

FROM recoll
RUN apt-get -y install breeze-icon-theme python3-venv
ARG SQUIRREL_VERSION=0.3.1
COPY dist/squirrel-${SQUIRREL_VERSION}-py3-none-any.whl squirrel-${SQUIRREL_VERSION}-py3-none-any.whl
RUN python3 -m venv --system-site-packages /opt/squirrel
RUN /opt/squirrel/bin/pip install squirrel-${SQUIRREL_VERSION}-py3-none-any.whl
EXPOSE 8000
ENTRYPOINT ["/opt/squirrel/bin/squirrel"]