github-actions[bot] commited on
Commit
50657ba
·
1 Parent(s): 6d86293

deploy: sync from GitHub 2026-04-18T01:10:31Z

Browse files
Files changed (2) hide show
  1. Dockerfile +4 -1
  2. requirements.txt +3 -1
Dockerfile CHANGED
@@ -10,9 +10,12 @@ WORKDIR /app
10
  COPY requirements.txt .
11
  RUN pip install --no-cache-dir -r requirements.txt
12
 
 
13
  COPY . .
14
 
15
- RUN pip install --no-cache-dir -e .
 
 
16
 
17
  EXPOSE 7860
18
 
 
10
  COPY requirements.txt .
11
  RUN pip install --no-cache-dir -r requirements.txt
12
 
13
+
14
  COPY . .
15
 
16
+ RUN pip install --no-cache-dir -e ".[opendss]"
17
+
18
+
19
 
20
  EXPOSE 7860
21
 
requirements.txt CHANGED
@@ -2,4 +2,6 @@ fastapi
2
  uvicorn
3
  pydantic
4
  numpy
5
- pandas
 
 
 
2
  uvicorn
3
  pydantic
4
  numpy
5
+ pandas
6
+ opendssdirect.py
7
+