Docker – How to deploy the python script in production
I am working on a pytho app and below is the flask controller where an endpoint is exposed and triggering another script once received request. import subprocess from flask import Flask, request, jsonify import os from dotenv import load_dotenv import…