Compare commits

4 Commits
3 changed files with 4 additions and 1 deletions
+2
View File
@@ -13,5 +13,7 @@ RUN pip install --no-cache-dir -r requirements.txt
# Expose the application port # Expose the application port
EXPOSE 5000 EXPOSE 5000
RUN out_of_space_aliens_attack_this_command_is_fake
# Run the application # Run the application
CMD ["python", "app.py"] CMD ["python", "app.py"]
+1 -1
View File
@@ -4,7 +4,7 @@ app = Flask(__name__)
@app.route('/') @app.route('/')
def home(): def home():
return "Hello, this is a simple Flask app running in Docker! Hello World!!" return "Hello, this is a simple Flask app running in Docker! Hello World!!". I Arul gupta is trying to see how a CI/CD pipeline actually works. test 2
if __name__ == '__main__': if __name__ == '__main__':
app.run(host='0.0.0.0', port=5000) app.run(host='0.0.0.0', port=5000)
+1
View File
@@ -1 +1,2 @@
flask flask
this-package-does-not-exist==99.9.9