Skip to content

Commit aea15a4

Browse files
committed
Copy requirements folder to container
1 parent 21880c5 commit aea15a4

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Dockerfile.dev

+4-1
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,12 @@ EXPOSE 8888/TCP
1515
RUN apt-get update && \
1616
apt-get -y install curl git
1717

18+
# Copy requirements files to Image
19+
COPY requirements/ /requirements
20+
1821
# Install Python packages
1922
RUN python -m pip install --upgrade pip && \
20-
python -m pip install -r requirements/requirements_dev.txt
23+
python -m pip install -r ./requirements/requirements_dev.txt
2124

2225
# Start the bash shell at container startup
2326
CMD ["/bin/bash"]

0 commit comments

Comments
 (0)