I created a Lambda function that runs an express app. Is it a bad practice at all? And if not, are there any good practices about it to follow that differ from those of a normal Express API running on Docker, for example?
If the code is shipped on any of these platforms in any way, including docker, how much concern is needed about security? Penetration testing, DOS and DDOS attacks mitigation and things like these?
I am creating an automated Docker setup for my website. One step is to pull the data from GitLab, but this is a private repo and should not be shared with anyone therefor I hesitate to just add a deploy key directly in my Dockerfile. Any good suggest...