squirrel/Dockerfile

13 lines
322 B
Docker

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