📌 Workshop Overview

🚀 This hands-on workshop will guide you through containerizing a Python application using Docker and deploying it to AWS using ECS Fargate. By the end, you will have a live application running on the internet.

🎯 Learning Objectives

⚙️ Prerequisites

⚠️ Make sure you have the following before starting:

📦 Starter Code

🐍 app.py

from flask import Flask

app=Flask(__name__)

@app.route("/")
def hello():
	return "Hello AWS Cloud Club! 🚀"

if__name__=="__main__":
	app.run(host="0.0.0.0",port=5000)

📄 requirements.txt