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