We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f72d792 commit 72fc8e3Copy full SHA for 72fc8e3
.github/workflows/deploy.yml
@@ -13,17 +13,20 @@ jobs:
13
runs-on: ubuntu-latest
14
steps:
15
- uses: actions/checkout@v4
16
+
17
- uses: docker/setup-buildx-action@v3
18
19
- uses: docker/login-action@v3
20
with:
21
registry: ghcr.io
22
username: ${{ github.actor }}
23
password: ${{ secrets.GITHUB_TOKEN }}
24
- - uses: docker/build-push-action@v6
25
+ - name: Build & Push spike image (root Dockerfile)
26
+ uses: docker/build-push-action@v6
27
- context: .
- file: server/Dockerfile
28
+ context: . # 레포 루트를 컨텍스트로
29
+ file: ./Dockerfile # 루트의 Dockerfile 사용
30
push: true
31
tags: |
32
ghcr.io/dmu-debugvisual/debugvisual-spike:latest
0 commit comments