From 5851f8b1c817c14bd87b276cb6993f98f97b5379 Mon Sep 17 00:00:00 2001 From: Manoj Kumar P Date: Sat, 8 Nov 2025 14:41:00 +0530 Subject: [PATCH] readme --- .devcontainer/Dockerfile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .devcontainer/Dockerfile diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile new file mode 100644 index 00000000..549bc318 --- /dev/null +++ b/.devcontainer/Dockerfile @@ -0,0 +1,16 @@ +# Base image +FROM python:3.10-slim + +# Set working directory +WORKDIR /app + +# Copy all files +COPY . /app + +# Install dependencies (if any) +RUN pip install --no-cache-dir -r requirements.txt || true +RUN pip install pytest + +# Default command: open bash +CMD ["/bin/bash"] +