Dockerfile: include Data/ directory for IMS weather cache
Browse files- 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
|
| 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 |
|