We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 21880c5 commit aea15a4Copy full SHA for aea15a4
Dockerfile.dev
@@ -15,9 +15,12 @@ EXPOSE 8888/TCP
15
RUN apt-get update && \
16
apt-get -y install curl git
17
18
+# Copy requirements files to Image
19
+COPY requirements/ /requirements
20
+
21
# Install Python packages
22
RUN python -m pip install --upgrade pip && \
- python -m pip install -r requirements/requirements_dev.txt
23
+ python -m pip install -r ./requirements/requirements_dev.txt
24
25
# Start the bash shell at container startup
26
CMD ["/bin/bash"]
0 commit comments