tomsquest / docker-radicale

Docker image for Radicale calendar and contact server :calendar: + security :closed_lock_with_key: + addons :rocket:
GNU General Public License v3.0
591 stars 82 forks source link

Docker image from latest master? #66

Closed rngtng closed 4 years ago

rngtng commented 4 years ago

As the last release 2.1.11 of radicale is quite a while ago, is there a way to get an image from latest master? Like an experimental/nightly build or pre-release? Would it be as simple as updateing Dockerfile line 33?

...
&& python3 -m pip install git+https://github.com/Kozea/Radicale.git@master passlib[bcrypt] \
...

Thx

tomsquest commented 4 years ago

Yes, this would work. Maybe you can do this from a child Dockerfile:

FROM this-image

RUN python3 -m pip install git+https://github.com/Kozea/Radicale.git@master

This should update Radicale to master and still benefit from any update on this image.

rngtng commented 4 years ago

true good point, I'll give it a try thx