Skip to content

Commit e30884d

Browse files
committed
Revert install
1 parent e895a27 commit e30884d

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

.devcontainer/Dockerfile

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff 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

3232
RUN \
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

3938
ENV DJ_HOST fakeservices.datajoint.io
4039
ENV DJ_USER root

CHANGELOG.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
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

0 commit comments

Comments
 (0)