ghcr.io/fosrl/pangolin:latest does not point to "latest" version #394

Closed
opened 2026-04-05 17:08:44 +02:00 by MrUnknownDE · 0 comments
Owner

Originally created by @luisbandalap on 1/8/2026

Describe the Bug

When running pangolin from ghcr.io/fosrl/pangolin:latest it does pull a very old version "1.11.0" when it should point to 1.14.1.

from docker.io
Image

from ghcr.io

Image

Ran on two different machines (one without previous pangolin image) and got same output.

Environment

  • OS Type & Version: Debian 13
  • Pangolin Version: 1.11.0 from ghcr.io/fosrl/pangolin:latest
  • Gerbil Version: 1.3.0
  • Traefik Version: 3.6.0
  • Newt Version: N/A
  • Olm Version: N/A

To Reproduce

Docker run from ghcr.io "latest" tag

docker run --entrypoint npm -it ghcr.io/fosrl/pangolin:latest version

luisbandalap@churrito:~ $  docker run --entrypoint npm -it ghcr.io/fosrl/pangolin:latest version
Unable to find image 'ghcr.io/fosrl/pangolin:latest' locally
latest: Pulling from fosrl/pangolin
2d35ebdb57d9: Already exists
2f385331c129: Pull complete
b6cd7e47c1da: Pull complete
44a43d49c511: Pull complete
1fce4ae771ee: Pull complete
70390113929f: Pull complete
eda14fb4afeb: Pull complete
776f89ee03b6: Pull complete
7387b5eb07b8: Pull complete
5309dd319686: Pull complete
56d5a675809f: Pull complete
c3d1208c4cbf: Pull complete
f09b74e6daea: Pull complete
968a15688ee2: Pull complete
f10aee6c1692: Pull complete
f9dc37447c0a: Pull complete
Digest: sha256:5cb157240538de05b38cd3316f632e6a617b7d1183dd34d004c919bd07b8fc6a
Status: Downloaded newer image for ghcr.io/fosrl/pangolin:latest
{
  '@fosrl/pangolin': '0.0.0',
  npm: '10.9.3',
  node: '22.20.0',
  acorn: '8.15.0',
  ada: '2.9.2',
  amaro: '1.1.2',
  ares: '1.34.5',
  brotli: '1.1.0',
  cjs_module_lexer: '2.1.0',
  cldr: '47.0',
  icu: '77.1',
  llhttp: '9.3.0',
  modules: '127',
  napi: '10',
  nbytes: '0.1.1',
  ncrypto: '0.0.1',
  nghttp2: '1.64.0',
  openssl: '3.5.2',
  simdjson: '3.13.0',
  simdutf: '6.4.2',
  sqlite: '3.50.4',
  tz: '2025b',
  undici: '6.21.2',
  unicode: '16.0',
  uv: '1.51.0',
  uvwasi: '0.0.23',
  v8: '12.4.254.21-node.33',
  zlib: '1.3.1-470d3a2',
  zstd: '1.5.7'
}

Docker run from docker.io "latest" tag

docker run --entrypoint npm -it docker.io/fosrl/pangolin:latest version

luisbandalap@churrito:~ $  docker run --entrypoint npm -it docker.io/fosrl/pangolin:latest version
Unable to find image 'fosrl/pangolin:latest' locally
latest: Pulling from fosrl/pangolin
1074353eec0d: Already exists
992d5d86cfde: Pull complete
097af512c3b2: Pull complete
eedec57bd66a: Pull complete
02dd019bbb52: Pull complete
67157c2401f4: Pull complete
5a26e1c0a157: Pull complete
7a1ea3c134b7: Pull complete
590a43fed777: Pull complete
cb8d948f9527: Pull complete
f4c48e4e3d03: Pull complete
0c7795fc0d3a: Pull complete
d2f11d2c7a5f: Pull complete
91e2dce81ad5: Pull complete
1e6f1a3ee974: Pull complete
5c4975ae583a: Pull complete
Digest: sha256:3fb5909dfd355605876d2906b592ec1485a9de000a4dc69fa8fd8dd2b10d5632
Status: Downloaded newer image for fosrl/pangolin:latest
{
  '@fosrl/pangolin': '0.0.0',
  npm: '11.6.2',
  node: '24.12.0',
  acorn: '8.15.0',
  ada: '3.3.0',
  amaro: '1.1.5',
  ares: '1.34.5',
  brotli: '1.1.0',
  cjs_module_lexer: '2.1.0',
  cldr: '47.0',
  icu: '77.1',
  llhttp: '9.3.0',
  modules: '137',
  napi: '10',
  nbytes: '0.1.1',
  ncrypto: '0.0.1',
  nghttp2: '1.67.1',
  openssl: '3.5.4',
  simdjson: '4.1.0',
  simdutf: '6.4.0',
  sqlite: '3.50.4',
  tz: '2025b',
  undici: '7.16.0',
  unicode: '16.0',
  uv: '1.51.0',
  uvwasi: '0.0.23',
  v8: '13.6.233.17-node.37',
  zlib: '1.3.1-470d3a2',
  zstd: '1.5.7'
}

All package versions will differ

Expected Behavior

Both commands should output the same versions.

*Originally created by @luisbandalap on 1/8/2026* ### Describe the Bug When running pangolin from ghcr.io/fosrl/pangolin:latest it does pull a very old version "1.11.0" when it should point to 1.14.1. from docker.io <img width="1559" height="739" alt="Image" src="https://github.com/user-attachments/assets/014d3286-5b7a-406d-8781-72c8fc78709c" /> from ghcr.io <img width="1485" height="739" alt="Image" src="https://github.com/user-attachments/assets/c8541bb1-64df-4e14-a07e-34ef65173180" /> Ran on two different machines (one without previous pangolin image) and got same output. ### Environment - OS Type & Version: Debian 13 - Pangolin Version: 1.11.0 from ghcr.io/fosrl/pangolin:latest - Gerbil Version: 1.3.0 - Traefik Version: 3.6.0 - Newt Version: N/A - Olm Version: N/A ### To Reproduce Docker run from ghcr.io "latest" tag docker run --entrypoint npm -it ghcr.io/fosrl/pangolin:latest version ``` luisbandalap@churrito:~ $ docker run --entrypoint npm -it ghcr.io/fosrl/pangolin:latest version Unable to find image 'ghcr.io/fosrl/pangolin:latest' locally latest: Pulling from fosrl/pangolin 2d35ebdb57d9: Already exists 2f385331c129: Pull complete b6cd7e47c1da: Pull complete 44a43d49c511: Pull complete 1fce4ae771ee: Pull complete 70390113929f: Pull complete eda14fb4afeb: Pull complete 776f89ee03b6: Pull complete 7387b5eb07b8: Pull complete 5309dd319686: Pull complete 56d5a675809f: Pull complete c3d1208c4cbf: Pull complete f09b74e6daea: Pull complete 968a15688ee2: Pull complete f10aee6c1692: Pull complete f9dc37447c0a: Pull complete Digest: sha256:5cb157240538de05b38cd3316f632e6a617b7d1183dd34d004c919bd07b8fc6a Status: Downloaded newer image for ghcr.io/fosrl/pangolin:latest { '@fosrl/pangolin': '0.0.0', npm: '10.9.3', node: '22.20.0', acorn: '8.15.0', ada: '2.9.2', amaro: '1.1.2', ares: '1.34.5', brotli: '1.1.0', cjs_module_lexer: '2.1.0', cldr: '47.0', icu: '77.1', llhttp: '9.3.0', modules: '127', napi: '10', nbytes: '0.1.1', ncrypto: '0.0.1', nghttp2: '1.64.0', openssl: '3.5.2', simdjson: '3.13.0', simdutf: '6.4.2', sqlite: '3.50.4', tz: '2025b', undici: '6.21.2', unicode: '16.0', uv: '1.51.0', uvwasi: '0.0.23', v8: '12.4.254.21-node.33', zlib: '1.3.1-470d3a2', zstd: '1.5.7' } ``` Docker run from docker.io "latest" tag docker run --entrypoint npm -it docker.io/fosrl/pangolin:latest version ``` luisbandalap@churrito:~ $ docker run --entrypoint npm -it docker.io/fosrl/pangolin:latest version Unable to find image 'fosrl/pangolin:latest' locally latest: Pulling from fosrl/pangolin 1074353eec0d: Already exists 992d5d86cfde: Pull complete 097af512c3b2: Pull complete eedec57bd66a: Pull complete 02dd019bbb52: Pull complete 67157c2401f4: Pull complete 5a26e1c0a157: Pull complete 7a1ea3c134b7: Pull complete 590a43fed777: Pull complete cb8d948f9527: Pull complete f4c48e4e3d03: Pull complete 0c7795fc0d3a: Pull complete d2f11d2c7a5f: Pull complete 91e2dce81ad5: Pull complete 1e6f1a3ee974: Pull complete 5c4975ae583a: Pull complete Digest: sha256:3fb5909dfd355605876d2906b592ec1485a9de000a4dc69fa8fd8dd2b10d5632 Status: Downloaded newer image for fosrl/pangolin:latest { '@fosrl/pangolin': '0.0.0', npm: '11.6.2', node: '24.12.0', acorn: '8.15.0', ada: '3.3.0', amaro: '1.1.5', ares: '1.34.5', brotli: '1.1.0', cjs_module_lexer: '2.1.0', cldr: '47.0', icu: '77.1', llhttp: '9.3.0', modules: '137', napi: '10', nbytes: '0.1.1', ncrypto: '0.0.1', nghttp2: '1.67.1', openssl: '3.5.4', simdjson: '4.1.0', simdutf: '6.4.0', sqlite: '3.50.4', tz: '2025b', undici: '7.16.0', unicode: '16.0', uv: '1.51.0', uvwasi: '0.0.23', v8: '13.6.233.17-node.37', zlib: '1.3.1-470d3a2', zstd: '1.5.7' } ``` All package versions will differ ### Expected Behavior Both commands should output the same versions.
Sign in to join this conversation.
No Label
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github/pangolin#394