From 637fdb9532944445f4960f6ba8c13eb860549385 Mon Sep 17 00:00:00 2001 From: Ubuntu Date: Sat, 21 Feb 2026 19:52:03 +0000 Subject: [PATCH] Added file --- projects/Dockerfile | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 projects/Dockerfile diff --git a/projects/Dockerfile b/projects/Dockerfile new file mode 100644 index 0000000..ca5c17c --- /dev/null +++ b/projects/Dockerfile @@ -0,0 +1,20 @@ +# Take patila + +FROM python:3.14 + + +#Add ingredients + +WORKDIR /app + +COPY . . + +#Mix / process the items + +RUN pip install -r requirements.txt + +EXPOSE 8000 + +#Gas on + +CMD ["python", "main.py"]