skip to Main Content

How to get get latest nodejs:14 digest version in Docker file

Is there any command/way to get latest digest(sha256) for amazon/aws-lambda-nodejs:14. Currently, we are manually setting digest version sha256. Like, give below. FROM amazon/aws-lambda-nodejs:14@sha256:621368a9c8cbf474b60ae9092725f6ea7ae4f9b0ac7a9229039e25157bad990b We end up getting vulnerabilities after some time for the Docker image. Please suggest a way/command in…

VIEW QUESTION

Not able to fetch Image

I am trying to get image but i am getting error: Failed to load resource: the server responded with a status of 404 (Not Found) TopBar.jsx import { useContext } from "react"; import { Link } from "react-router-dom"; import {…

VIEW QUESTION

Unzip not handling utf-8 in Node Alpine Docker image: how to set correct locale?

With this zip file, this Node script successfully outputs the files: const child_process = require('child_process') const util = require('util') const exec = util.promisify(child_process.exec) exec(`unzip -Z1 metamorpR.zip`).then(zip_contents => { if (zip_contents.stderr) { throw new Error(`unzip error: ${zip_contents.stderr}`) } console.log(zip_contents.stdout) }) metamorpR.z5…

VIEW QUESTION
Back To Top
Search