mnoorchenar commited on
Commit
b0bbc2c
Β·
1 Parent(s): edc9558

Update 2026-03-25 21:45:08

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -46,8 +46,8 @@ RUN pip install --no-cache-dir \
46
  # ── Application code ──────────────────────────────────────────────────────────
47
  COPY --chown=user . .
48
 
49
- # Create directories needed at runtime
50
- RUN mkdir -p mlruns logs /home/user/airflow/logs
51
 
52
  # Initialise Airflow metadata DB (SQLite β€” no external DB needed)
53
  RUN airflow db migrate
 
46
  # ── Application code ──────────────────────────────────────────────────────────
47
  COPY --chown=user . .
48
 
49
+ # Create directories needed at runtime and ensure start.sh is executable
50
+ RUN mkdir -p mlruns logs /home/user/airflow/logs && chmod +x /app/start.sh
51
 
52
  # Initialise Airflow metadata DB (SQLite β€” no external DB needed)
53
  RUN airflow db migrate