Allow for version bumps

This commit is contained in:
Tris Forster 2025-09-29 23:41:01 +10:00
parent 34aa402292
commit c2aae2afc3
2 changed files with 5 additions and 3 deletions

View File

@ -2,10 +2,12 @@ FROM recoll
RUN apt-get -y install breeze-icon-theme python3-venv 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 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 python3 -m venv --system-site-packages /opt/squirrel
RUN /opt/squirrel/bin/pip install squirrel-0.3.0-py3-none-any.whl RUN /opt/squirrel/bin/pip install squirrel-${SQUIRREL_VERSION}-py3-none-any.whl
EXPOSE 8000 EXPOSE 8000

View File

@ -1,6 +1,6 @@
[project] [project]
name = "squirrel" name = "squirrel"
version = "0.3.0" version = "0.3.1"
description = "Find your nuts" description = "Find your nuts"
authors = [ authors = [
{name = "Your Name",email = "you@example.com"} {name = "Your Name",email = "you@example.com"}