Skip to content

Commit

Permalink
chore: build full docker image for arm64 (#4391)
Browse files Browse the repository at this point in the history
* chore: build `windmill-full` for `arm64`

* fix: use non-enterprise docker image as base
  • Loading branch information
invakid404 committed Sep 14, 2024
1 parent 2e80107 commit 36fc048
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -738,11 +738,11 @@ jobs:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push publicly
- name: Build and push publicly
uses: depot/build-push-action@v1
with:
context: .
platforms: linux/amd64
platforms: linux/amd64,linux/arm64
push: true
file: "./docker/DockerfileRust"
tags: |
Expand Down Expand Up @@ -787,7 +787,7 @@ jobs:
uses: depot/build-push-action@v1
with:
context: .
platforms: linux/amd64
platforms: linux/amd64,linux/arm64
push: true
file: "./docker/DockerfileRustEe"
tags: |
Expand Down
2 changes: 1 addition & 1 deletion docker/DockerfileRust
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/windmill-labs/windmill-ee:dev
FROM ghcr.io/windmill-labs/windmill:dev

COPY --from=rust:1.80.1 /usr/local/cargo /usr/local/cargo
COPY --from=rust:1.80.1 /usr/local/rustup /usr/local/rustup

0 comments on commit 36fc048

Please sign in to comment.