This commit is contained in:
51m0n
2026-03-30 00:26:18 +00:00
commit c202acc823
14 changed files with 715 additions and 0 deletions

17
Dockerfile Executable file
View File

@@ -0,0 +1,17 @@
FROM python
# Set working directory
WORKDIR /app
COPY requirements.txt /app/
# Install Python packages
RUN pip install --no-cache-dir -r requirements.txt
# Copy the script
COPY svg_processor.py /app/
# TODO, actually make this do the generation
# Default command (can be overridden)
CMD ["python", "svg_processor.py"]