Skip to content

Commit

Permalink
Merge pull request #5149 from jandubois/rdx-proxy-creationdate
Browse files Browse the repository at this point in the history
Drop creation date from rdx-proxy image metadata
  • Loading branch information
Nino-K authored Jul 12, 2023
2 parents a55e53e + d715377 commit d40c100
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions scripts/lib/build-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -389,9 +389,8 @@ export default {
await addEntry(`${ layerHash }/VERSION`, Buffer.from('1.0'));
await addEntry(`${ layerHash }/layer.tar`, fs.createReadStream(layerPath), layerOutput.bytesWritten);
await addEntry(`${ layerHash }/json`, Buffer.from(JSON.stringify({
id: layerHash,
created: '0000-01-01T00:00:00.0Z',
config: {
id: layerHash,
config: {
ExposedPorts: { '80/tcp': {} },
WorkingDir: '/',
Entrypoint: [`/${ path.basename(executablePath) }`],
Expand All @@ -404,7 +403,6 @@ export default {
Entrypoint: [`/${ path.basename(executablePath) }`],
WorkingDir: '/',
},
created: '0000-01-01T00:00:00.0Z',
history: [],
os: 'linux',
rootfs: {
Expand Down

0 comments on commit d40c100

Please sign in to comment.