For a simple app I'm using to test a devops pipeline I'm outputting the start time of a build to the homepage. On my development machine the year of the ISO-8601 timestamp I expect, 2019, is printed (specifically, "2019-09-12T20:11:00.000Z"). When the same codebase is built using AWS CodeBuild the ISO-8601 timestamp looks like "+051668-02-09T08:09:32.000Z". What is "+051668"? I presume it's the year; My best guess is it's the year represented as a different calendar. Thoughts?
AWS CodeBuild sets this environment variable for every build (CODEBUILD_START_TIME). I'm building with their latest, default, Ubuntu container (v2.0).