Loading forecast_app/Dockerfile 0 → 100644 +15 −0 Original line number Diff line number Diff line # Dockerfile FROM python:3.11-slim WORKDIR /app COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt COPY . . RUN mkdir -p data && python data_generator.py EXPOSE 5001 CMD ["python", "app.py"] No newline at end of file forecast_app/docker-compose.yml 0 → 100644 +8 −0 Original line number Diff line number Diff line services: forecast_app: build: . ports: - "52999:5001" volumes: - ./data:/app/data restart: unless-stopped No newline at end of file Loading
forecast_app/Dockerfile 0 → 100644 +15 −0 Original line number Diff line number Diff line # Dockerfile FROM python:3.11-slim WORKDIR /app COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt COPY . . RUN mkdir -p data && python data_generator.py EXPOSE 5001 CMD ["python", "app.py"] No newline at end of file
forecast_app/docker-compose.yml 0 → 100644 +8 −0 Original line number Diff line number Diff line services: forecast_app: build: . ports: - "52999:5001" volumes: - ./data:/app/data restart: unless-stopped No newline at end of file