Harm Verhagen

Results 18 comments of Harm Verhagen

Please check-out my attempt (directly edited Dockerfile, not the template) https://github.com/harmv/docker-postgis/commit/4283d746e7467c9128b7754051af5759fd21754b https://github.com/harmv/docker-postgis/blob/multi-stage-test-339/13-3.3/alpine/Dockerfile pro: * smaller size * correct version of libLVM in final docker image Sieze ``` postgis test 50501359732a...

Hm.. I do understand why the latest got much smaller (556 MB- > 425 MB), the upstream image got its LVM library upgraded. So you no longer get the (unintentional)...

I managed to get the size down to 425 MB by adding a workaround for docker issue: [21950](https://github.com/moby/moby/issues/21950). while doing that I encountered docker issue [45015](https://github.com/moby/moby/issues/45015) See: https://github.com/harmv/docker-postgis/commit/82325bd34f173f054bf79ef2a42c36efec02b9f4 End result:...

My initial bug report was for the huge size. Investigation showed that this was caused by 2 issues: 1. inclusion of libLVM (enabling of JIT feature in postgres) 2. version...

take care. cp -a of busybox (which is in alpine base image) does **not** preserve hard links.

I got this exact problem when I was inserting data that was actually outside the retention period. (Fixing the testcases to use more recent timestamps fixed the problem for me)...

``` ginstall: cannot stat 'Modules/_blake2.cpython-312-darwin.so': No such file or directory ``` Fixed here with: ``` brew install libb2 ``` After that: `pyenv install 3.12.2` just worked (Sonoma 14.4 on M2)...

@adiroiban , I doubt that that is the problem. I actually can't find a threadpool in pymemcache. When I look in https://github.com/pinterest/pymemcache/blob/master/pymemcache/pool.py (or in any code of pymemcache) I don't...