Allow for version bumps
This commit is contained in:
parent
34aa402292
commit
c2aae2afc3
@ -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
|
||||||
|
|
||||||
|
|||||||
@ -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"}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user