Skip to content

Commit dab7678

Browse files
committed
Bump dependency
1 parent 0f10389 commit dab7678

File tree

3 files changed

+16
-1
lines changed

3 files changed

+16
-1
lines changed

requirements-prod.in

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
-c requirements.txt
2+
sqlalchemy

requirements-prod.txt

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#
2+
# This file is autogenerated by pip-compile with Python 3.8
3+
# by the following command:
4+
#
5+
# pip-compile requirements-prod.in
6+
#
7+
sqlalchemy==2.0.35
8+
# via -r requirements-prod.in
9+
typing-extensions==4.8.0
10+
# via
11+
# -c requirements.txt
12+
# sqlalchemy

v03_pipeline/deploy/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ WORKDIR /v03_pipeline
1010

1111
## Copy & Install Application Deps
1212
COPY requirements.txt .
13-
RUN python3 -m pip install --no-cache-dir -r ./requirements.txt
13+
COPY requirements-prod.txt .
14+
RUN python3 -m pip install --no-cache-dir -r ./requirements.txt -r requirements-prod.txt
1415

1516
# Application Code
1617
COPY v03_pipeline/api api

0 commit comments

Comments
 (0)