File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed
Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -27,14 +27,13 @@ RUN \
2727 echo 'export PS1="\[\e [32;1m\]\u\[\e [m\] @\[\e [34;1m\]\H\[\e [m\] :\[\e [33;1m\]\w\[\e [m\] $ "' >> /home/vscode/.bashrc && \
2828 apt-get clean
2929
30- COPY ./ /tmp/datajoint-tutorials
30+ COPY ./requirements.txt /tmp/
3131
3232RUN \
3333 # tutorial dependencies
3434 pip install --no-cache-dir black faker ipykernel && \
35- pip install --no-cache-dir -e /tmp/datajoint-tutorials && \
36- # clean up
37- rm -rf /tmp/datajoint-tutorials
35+ pip install --no-cache-dir -r /tmp/requirements.txt && \
36+ rm /tmp/requirements.txt
3837
3938ENV DJ_HOST fakeservices.datajoint.io
4039ENV DJ_USER root
Original file line number Diff line number Diff line change 33## 0.1.3 - 2023-09-14
44
55+ Add - GitHub Actions to build Docker image and push to DockerHub
6- + Update - Dockerfile to install repository
76
87## 0.1.2 - 2023-07-13
98
You can’t perform that action at this time.
0 commit comments