Skip to content

Commit c59ca7a

Browse files
authored
Fix GHA buildx file path (#987)
* Fix GHA buildx file path * Try defaultContext handlebars * Update devcore build step --------- Co-authored-by: Laura Mosher <[email protected]>
1 parent 0ff5f5d commit c59ca7a

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

.github/workflows/on-merge-master.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ jobs:
2323
- name: Build and push
2424
uses: docker/build-push-action@v5
2525
with:
26-
context: .
27-
file: "{{defaultContext}}/rails/Dockerfile"
26+
context: "{{defaultContext}}"
27+
file: ./rails/Dockerfile
2828
target: devcore
2929
platforms: linux/amd64,linux/arm64,linux/arm/v7
3030
push: true

.github/workflows/on-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ jobs:
2121
- name: Build and push
2222
uses: docker/build-push-action@v5
2323
with:
24-
context: .
25-
file: "{{defaultContext}}/rails/Dockerfile"
24+
context: "{{defaultContext}}"
25+
file: ./rails/Dockerfile
2626
platforms: linux/amd64,linux/arm64,linux/arm/v7
2727
push: true
2828
tags: |

rails/Dockerfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ RUN apk --no-cache add --update \
2828
imagemagick \
2929
ffmpeg \
3030
poppler && \
31-
gem update --system --no-document && \
3231
gem install bundler --no-document --force -v '~> 2.4.7'
3332

3433
WORKDIR /tmp

0 commit comments

Comments
 (0)