Initial commit - cleaned repository
This commit is contained in:
16
services/pipeline/scheduler/Dockerfile
Normal file
16
services/pipeline/scheduler/Dockerfile
Normal file
@ -0,0 +1,16 @@
|
||||
FROM python:3.11-slim
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
# Install dependencies
|
||||
COPY ./scheduler/requirements.txt .
|
||||
RUN pip install --no-cache-dir -r requirements.txt
|
||||
|
||||
# Copy shared module
|
||||
COPY ./shared /app/shared
|
||||
|
||||
# Copy scheduler code
|
||||
COPY ./scheduler /app
|
||||
|
||||
# Run scheduler
|
||||
CMD ["python", "keyword_scheduler.py"]
|
||||
Reference in New Issue
Block a user