Running a Webservice, Part 2: Containerizing the App
Intro Welcome to part 2 of the mini series about running a webservice. In part 1, we learned how to use the FastAPI framework to quickly and easily write an application to serve a HTTP REST API in python. In this article, we will learn how to create a Docker container for our app, which will make it much easier to deploy later on. Overview Docker, or container technology in general, allows us to bundle all required dependencies with our app. ...