Skip to content

Commit

Permalink
hmm
Browse files Browse the repository at this point in the history
  • Loading branch information
MikesGlitch committed Mar 5, 2025
1 parent 8de4766 commit 432d2c2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/sync-server/docker/edge-alpine.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ WORKDIR /app
COPY .yarn ./.yarn
COPY yarn.lock package.json .yarnrc.yml tsconfig.json ./

RUN if [ "$(uname -m)" = "armv7l" ]; then yarn config set taskPoolConcurrency 2; yarn config set networkConcurrency 5; fi
RUN if [ "$(uname -m)" = "armv7l" ]; then yarn config set taskPoolConcurrency 1; yarn config set networkConcurrency 5; fi

# Copying workspace so @actual-app/web can be built
COPY ./bin/package-browser ./bin/package-browser
Expand Down
2 changes: 1 addition & 1 deletion packages/sync-server/docker/edge-ubuntu.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ WORKDIR /app
COPY .yarn ./.yarn
COPY yarn.lock package.json .yarnrc.yml tsconfig.json ./

RUN if [ "$(uname -m)" = "armv7l" ]; then yarn config set taskPoolConcurrency 2; yarn config set networkConcurrency 5; fi
RUN if [ "$(uname -m)" = "armv7l" ]; then yarn config set taskPoolConcurrency 1; yarn config set networkConcurrency 5; fi

# Copying workspace so @actual-app/web can be built
COPY ./bin/package-browser ./bin/package-browser
Expand Down

0 comments on commit 432d2c2

Please sign in to comment.