You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The FAQ has a note regarding "Why are my images all created in 1970?". When trying out ko for the first time recently I noticed the timestamp was indeed not "now", but it was not 1970 either.
In my case the magic timestamp from docker inspect was "Created": "2024-06-06T11:29:57Z", and some hair-pulling later I got a clue by running ko build with verbose logging:
KO_DOCKER_REPO=ko.local ko build -v 2>&1 | grep "2024-06-06T11:29:57Z"
{"architecture":"amd64","author":"github.com/chainguard-dev/apko","created":"2024-06-06T11:29:57Z","history":[{"author":"apko","created":"2024-06-06T11:29:57Z","created_by":"apko","comment":"This is an apko single-layer image"}],"os":"linux","rootfs":{"type":"layers","diff_ids":["sha256:c35c58ad774b9d0552e5b01f5b020ee1e835f310ce6b0bad8bd007512c7bbd80"]},"config":{"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","SSL_CERT_FILE=/etc/ssl/certs/ca-certificates.crt"],"User":"65532"}}
So I assume what is happening is that my container will inherit the creation time of the base cgr.dev/chainguard/static:latest image. Maybe the FAQ should be updated to mention this?
The text was updated successfully, but these errors were encountered:
Just noticed this myself yesterday. Where is that FAQ you're referring to?
Also feels like this should be fixed in code instead of being noted in FAQ.
Image creation date is important.
This issue is stale because it has been open for 90 days with no
activity. It will automatically close after 30 more days of
inactivity. Keep fresh with the 'lifecycle/frozen' label.
The FAQ has a note regarding "Why are my images all created in 1970?". When trying out ko for the first time recently I noticed the timestamp was indeed not "now", but it was not 1970 either.
In my case the magic timestamp from
docker inspect
was"Created": "2024-06-06T11:29:57Z",
and some hair-pulling later I got a clue by runningko build
with verbose logging:So I assume what is happening is that my container will inherit the creation time of the base
cgr.dev/chainguard/static:latest
image. Maybe the FAQ should be updated to mention this?The text was updated successfully, but these errors were encountered: