Skip to content

Commit ea3533f

Browse files
committed
Add "pip install" directly into Dockerfile
1 parent 7885c49 commit ea3533f

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Dockerfile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ ARG WORKDIR=/dataflow/template
44
RUN mkdir -p ${WORKDIR}
55
WORKDIR ${WORKDIR}
66

7+
# Install dependencies
8+
RUN pip install -U pip setuptools wheel
9+
RUN pip install apache-beam[gcp]>=2.50.0 requests>=2.31.0 typing-extensions>=4.5.0
10+
11+
# Copy template files
712
COPY requirements.txt .
813
COPY setup.py .
914
COPY pipeline.py .

0 commit comments

Comments
 (0)