15 lines
427 B
Docker
15 lines
427 B
Docker
FROM recoll
|
|
|
|
RUN apt-get update && apt-get -y install breeze-icon-theme python3-venv && apt-get clean
|
|
|
|
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"]
|