initial
This commit is contained in:
17
Dockerfile
Executable file
17
Dockerfile
Executable 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"]
|
||||
Reference in New Issue
Block a user