mirror of
https://github.com/bewcloud/bewcloud.git
synced 2026-03-11 08:54:49 +00:00
Disable Arm64 CI build, Deno appears to have a bug there
This commit is contained in:
parent
afd0c3c63f
commit
ab4cb498a2
2 changed files with 2 additions and 3 deletions
3
.github/workflows/build-docker-image.yml
vendored
3
.github/workflows/build-docker-image.yml
vendored
|
|
@ -46,7 +46,8 @@ jobs:
|
|||
- name: Build and push Docker image
|
||||
uses: docker/build-push-action@v6
|
||||
with:
|
||||
platforms: linux/amd64,linux/arm64
|
||||
# platforms: linux/amd64,linux/arm64 (currenly disabled because of some Deno bug on arm64)
|
||||
platforms: linux/amd64
|
||||
context: .
|
||||
file: ./Dockerfile
|
||||
push: true
|
||||
|
|
|
|||
|
|
@ -9,8 +9,6 @@ WORKDIR /app
|
|||
# These steps will be re-run upon each file change in your working directory:
|
||||
ADD . /app
|
||||
|
||||
RUN rm -fr node_modules _fresh
|
||||
|
||||
# Build fresh
|
||||
RUN deno task build
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue