Skip to content

Commit e95cc9c

Browse files
committed
cpu only
1 parent 5842a7d commit e95cc9c

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/docker-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ jobs:
4545
- name: Build (and push on main branch)
4646
uses: docker/build-push-action@v3
4747
with:
48-
context: .
49-
file: docker/Dockerfile # adjust if your Dockerfile moves
48+
context: ./docker
49+
file: Dockerfile # adjust if your Dockerfile moves
5050
platforms: linux/amd64,linux/arm64
5151
push: ${{ github.event_name == 'push' }} # PRs build but don’t publish
5252
tags: |

docker/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ USER ${NB_UID}
1111

1212
# ---------- copy the course -------------------------------------------------------
1313
WORKDIR /home/jovyan/work
14-
COPY .. .
14+
# COPY .. .
15+
RUN git clone --depth 1 https://github.com/DeepTrackAI/DeepLearningCrashCourse.git .
1516

1617
# ---------- ensure correct ownership ---------------------------------------------
1718
USER root

0 commit comments

Comments
 (0)