17 lines
339 B
Docker
Executable File
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"] |