Skip to content

Commit b08a372

Browse files
committed
commit
1 parent c6fc021 commit b08a372

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

app/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ COPY . /app
1919
# Install pip separately and requirements
2020
RUN 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
2626
RUN useradd --create-home appuser

app/README-DEPLOY.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,17 +35,17 @@ IMPORTANT: follow the steps exactly and do them in order. This file is self-cont
3535
```
3636
2. Install base deps:
3737
```
38-
pip install -r requirements-base.txt
38+
pip install -r requirements/requirements-base.txt
3939
```
4040
3. 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
```
4646
4. 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)

pytorch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Subproject commit 81955b19acdae117c80ee23dab23fcfe8e2bc8ac
1+
Subproject commit 6f5419d58abb1b8067c570bdd652674eb6ffa9b5

0 commit comments

Comments
 (0)