/bin/sh: apt-get: not found
The image you're using is Alpine based, so you can't use apt-get
because it's Ubuntu's package manager.
To fix this just use:
apk update
and apk add
If you are looking inside dockerfile while creating image, add this line:
RUN apk add --update yourPackageName