safraeli commited on
Commit
609f122
·
verified ·
1 Parent(s): c58bb48

Dockerfile: include Data/ directory for IMS weather cache

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -10,10 +10,11 @@ RUN pip install --no-cache-dir -r requirements.txt -r backend/requirements.txt
10
  # Non-root user for security
11
  RUN groupadd -r solarwine && useradd -r -g solarwine solarwine
12
 
13
- # Copy application code (no Data/ — mount or fetch at runtime)
14
  COPY src/ src/
15
  COPY config/ config/
16
  COPY backend/ backend/
 
17
 
18
  ENV PYTHONPATH=/app
19
 
 
10
  # Non-root user for security
11
  RUN groupadd -r solarwine && useradd -r -g solarwine solarwine
12
 
13
+ # Copy application code and data cache
14
  COPY src/ src/
15
  COPY config/ config/
16
  COPY backend/ backend/
17
+ COPY Data/ Data/
18
 
19
  ENV PYTHONPATH=/app
20