Initial commit - copied workspace after database cleanup
This commit is contained in:
8
scheduler/Dockerfile
Normal file
8
scheduler/Dockerfile
Normal file
@@ -0,0 +1,8 @@
|
||||
FROM python:3.13-slim
|
||||
WORKDIR /app
|
||||
COPY scheduler/requirements.txt .
|
||||
RUN pip install --no-cache-dir -r requirements.txt
|
||||
COPY scheduler/ ./scheduler
|
||||
COPY models/ ./models
|
||||
ENV PYTHONPATH=/app
|
||||
CMD ["python", "-m", "scheduler.scheduler"]
|
||||
Reference in New Issue
Block a user