From c39c8c56d245e93e79b17caa08c65f47348f8cc6 Mon Sep 17 00:00:00 2001 From: Samuel <94757110+Sekoutou09@users.noreply.github.com> Date: Thu, 23 Feb 2023 03:59:35 -0600 Subject: [PATCH 1/3] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 40afaa4..65b4476 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,4 @@ # S4-projects ![del](https://user-images.githubusercontent.com/96950933/216551396-58ffa498-0148-4a61-97ac-74aaeb0bd115.png) +Hello ! I'm learning devops to be on my way of getting 6 figures income. From 7930bc044fa9aaeabbe9e4b1325cb9a7463e6c66 Mon Sep 17 00:00:00 2001 From: Samuel Ekoutou Date: Mon, 17 Jul 2023 21:40:47 +0300 Subject: [PATCH 2/3] 05 files added --- andrea | 0 gaby | 0 kassy | 0 mamy, | 0 samuel | 0 5 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 andrea create mode 100644 gaby create mode 100644 kassy create mode 100644 mamy, create mode 100644 samuel diff --git a/andrea b/andrea new file mode 100644 index 0000000..e69de29 diff --git a/gaby b/gaby new file mode 100644 index 0000000..e69de29 diff --git a/kassy b/kassy new file mode 100644 index 0000000..e69de29 diff --git a/mamy, b/mamy, new file mode 100644 index 0000000..e69de29 diff --git a/samuel b/samuel new file mode 100644 index 0000000..e69de29 From 053e4283ae5e485da44d8e5ad673ebc8ba015383 Mon Sep 17 00:00:00 2001 From: Samuel <94757110+Sekoutou09@users.noreply.github.com> Date: Tue, 15 Aug 2023 13:32:35 -0500 Subject: [PATCH 3/3] Create Dockerfile --- Dockerfile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..6f6e526 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,17 @@ +# Use an official Python runtime as the base image +FROM python:3.9-slim + +# Set the working directory inside the container +WORKDIR /app + +# Copy the current directory contents into the container at /app +COPY . /app + +# Install the required dependencies +RUN pip install --no-cache-dir Flask + +# Expose port 5000 (the default Flask port) +EXPOSE 5000 + +# Set the command to run the application when the container starts +CMD ["python", "app.py"]