File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -19,8 +19,8 @@ COPY . /app
1919# Install pip separately and requirements
2020RUN pip install --upgrade pip
2121# Install base + prod
22- RUN pip install -r requirements-base.txt
23- RUN pip install -r requirements-prod.txt
22+ RUN pip install -r requirements/requirements -base.txt
23+ RUN pip install -r requirements/requirements -prod.txt
2424
2525# Create a non-root user
2626RUN useradd --create-home appuser
Original file line number Diff line number Diff line change @@ -35,17 +35,17 @@ IMPORTANT: follow the steps exactly and do them in order. This file is self-cont
3535 ```
36362 . Install base deps:
3737 ```
38- pip install -r requirements-base.txt
38+ pip install -r requirements/requirements -base.txt
3939 ```
40403 . Install production extras (torch CPU wheel — choose appropriate instruction for your platform):
4141 ```
4242 # For CPU-only PyTorch (Linux example)
4343 pip install --index-url https://download.pytorch.org/whl/cpu/ torch
44- pip install -r requirements-prod.txt
44+ pip install -r requirements/requirements -prod.txt
4545 ```
46464 . Install dev/test deps (optional):
4747 ```
48- pip install -r requirements-dev.txt
48+ pip install -r requirements/requirements -dev.txt
4949 ```
5050
5151## 5. Environment variables (create ` .env ` in repo root)
Original file line number Diff line number Diff line change 1- Subproject commit 81955b19acdae117c80ee23dab23fcfe8e2bc8ac
1+ Subproject commit 6f5419d58abb1b8067c570bdd652674eb6ffa9b5
You can’t perform that action at this time.
0 commit comments