From d94465f56675144693c17e34ac2bd2c5f7d3c592 Mon Sep 17 00:00:00 2001 From: Anupam Maurya Date: Sun, 3 Dec 2023 11:00:33 +0530 Subject: [PATCH] Create Dockerfile --- Dockerfile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..cf92445 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,14 @@ +# Use an official Python runtime as a parent image +FROM python:3.8-slim + +# Set the working directory to /app +WORKDIR /app + +# Copy the current directory contents into the container at /app +COPY . /app + +# Install necessary dependencies +RUN pip install --no-cache-dir -r requirements.txt + +# Run your Tanji script +CMD ["python", "Tanji/tanji/tanji.py"]