Initial commit: TA Organizer script with Docker support

This commit is contained in:
wander 2025-04-12 15:25:05 -04:00
commit 1230ae7adf
4 changed files with 112 additions and 0 deletions

5
Dockerfile Normal file
View file

@ -0,0 +1,5 @@
FROM python:3.11-slim
WORKDIR /app
COPY ta_symlink.py .
RUN pip install --no-cache-dir requests
CMD ["python", "ta_symlink.py"]