Files
branding/Dockerfile
2026-03-30 00:26:18 +00:00

17 lines
339 B
Docker
Executable File

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