Written by Andrew SerraJune 19, 2024
How To Minimize Docker Container Sizes
Some of the most important assets a developer may have are time, money, computing power, and memory space. In this post, I’ll focus on the importance of multi-stage builds to minimize Docker container sizes. In a previous project, the Credit Card Validator API, I created a Dockerfile to be able to run a web application
Written by Andrew SerraJune 18, 2024
Docker Containers for React Deployment
Docker is an awesome tool for isolation and stateless deployments. Web applications are a great way to learn how to deploy using containers. In this post, I’ll use Docker containers for React deployments. This post will use multi-stage builds in Docker that allow building an application and only using what is needed in the container.