Initial Commit

This commit is contained in:
2025-05-27 17:55:08 +00:00
commit e5f50a815b
32 changed files with 1581 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
FROM mcr.microsoft.com/devcontainers/python:3.13
# Install system dependencies
RUN apt-get update && apt-get install -y \
sqlite3 \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
# Set the working directory
WORKDIR /workspace
# Default command
CMD ["sleep", "infinity"]