|
55 | 55 | uses: docker/build-push-action@v5
|
56 | 56 | with:
|
57 | 57 | context: .
|
| 58 | + file: ./docker/Dockerfile |
58 | 59 | push: true
|
59 | 60 | tags: litellm/litellm:${{ github.event.inputs.tag || 'latest' }}
|
60 | 61 | -
|
|
63 | 64 | with:
|
64 | 65 | context: .
|
65 | 66 | push: true
|
66 |
| - file: Dockerfile.database |
| 67 | + file: ./docker/Dockerfile.database |
67 | 68 | tags: litellm/litellm-database:${{ github.event.inputs.tag || 'latest' }}
|
68 | 69 | -
|
69 | 70 | name: Build and push litellm-spend-logs image
|
@@ -111,6 +112,7 @@ jobs:
|
111 | 112 | uses: docker/build-push-action@4976231911ebf5f32aad765192d35f942aa48cb8
|
112 | 113 | with:
|
113 | 114 | context: .
|
| 115 | + file: ./docker/Dockerfile |
114 | 116 | push: true
|
115 | 117 | tags: ${{ steps.meta.outputs.tags }}-${{ github.event.inputs.tag || 'latest' }}, ${{ steps.meta.outputs.tags }}-${{ github.event.inputs.release_type }} # if a tag is provided, use that, otherwise use the release tag, and if neither is available, use 'latest'
|
116 | 118 | labels: ${{ steps.meta.outputs.labels }}
|
@@ -149,7 +151,7 @@ jobs:
|
149 | 151 | uses: docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4
|
150 | 152 | with:
|
151 | 153 | context: .
|
152 |
| - file: Dockerfile.database |
| 154 | + file: ./docker/Dockerfile.database |
153 | 155 | push: true
|
154 | 156 | tags: ${{ steps.meta-database.outputs.tags }}-${{ github.event.inputs.tag || 'latest' }}, ${{ steps.meta-database.outputs.tags }}-${{ github.event.inputs.release_type }}
|
155 | 157 | labels: ${{ steps.meta-database.outputs.labels }}
|
@@ -188,7 +190,7 @@ jobs:
|
188 | 190 | uses: docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4
|
189 | 191 | with:
|
190 | 192 | context: .
|
191 |
| - file: Dockerfile.non_root |
| 193 | + file: ./docker/Dockerfile.non_root |
192 | 194 | push: true
|
193 | 195 | tags: ${{ steps.meta-non_root.outputs.tags }}-${{ github.event.inputs.tag || 'latest' }}, ${{ steps.meta-non_root.outputs.tags }}-${{ github.event.inputs.release_type }}
|
194 | 196 | labels: ${{ steps.meta-non_root.outputs.labels }}
|
|
0 commit comments