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"]