- Published on
All Posts
All Posts
- aws (9)
- python (6)
- docker (4)
- devops (3)
- awscloudcertifications (3)
- fastapi (2)
- software-engineering (2)
- cloud-native (2)
- development (2)
- containers (2)
- linux (2)
- careergrowth (2)
- programming (1)
- cache (1)
- lru (1)
- distroless (1)
- terraform (1)
- cdk (1)
- tfcdk (1)
- emulation (1)
- localstack (1)
- apprunner (1)
- golang (1)
- ecs (1)
- cdktf (1)
- springboot (1)
- kubernetes (1)
- networkingbasics (1)
- developers (1)
- loadbalancing (1)
- awssa (1)
- solutionsarchitect (1)
- platformengineering (1)
- genai (1)
- machinelearning (1)
- deeplearning (1)
- studytips (1)
- techcareers (1)
- distributedsystems (1)
- awsoutage (1)
- racecondition (1)
- concurrency (1)
- bash (1)
- books (1)
- Published on
LocalStack is a cloud service emulator that runs in a single docker container on your local machine. It allows you to run, test, and debug your AWS applications without a connection to a remote cloud provider. As stated on their Getting Started page, LocalStack supports a number of fundamental AWS services including AWS Lambda, S3, DynamoDB, SQS, and many more.- Published on
- Published on
Compared to common base images like ubuntu, alpine, Distroless Images have only what you need, to run your application .Let’s try to package a FastAPI api with “Distroless” Docker Images.- Published on
In this article, we will write a small python package implementing the LRU Cache.