File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 45
45
- name : Build (and push on main branch)
46
46
uses : docker/build-push-action@v3
47
47
with :
48
- context : .
49
- file : docker/ Dockerfile # adjust if your Dockerfile moves
48
+ context : ./docker
49
+ file : Dockerfile # adjust if your Dockerfile moves
50
50
platforms : linux/amd64,linux/arm64
51
51
push : ${{ github.event_name == 'push' }} # PRs build but don’t publish
52
52
tags : |
Original file line number Diff line number Diff line change @@ -11,7 +11,8 @@ USER ${NB_UID}
11
11
12
12
# ---------- copy the course -------------------------------------------------------
13
13
WORKDIR /home/jovyan/work
14
- COPY .. .
14
+ # COPY .. .
15
+ RUN git clone --depth 1 https://github.com/DeepTrackAI/DeepLearningCrashCourse.git .
15
16
16
17
# ---------- ensure correct ownership ---------------------------------------------
17
18
USER root
You can’t perform that action at this time.
0 commit comments