Skip to content

Commit

Permalink
chore(Docker, dev.yaml): talib and tulind require build-essential`
Browse files Browse the repository at this point in the history
  • Loading branch information
bludnic committed May 19, 2024
1 parent 02af17d commit 30185f4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ RUN turbo prune --scope=processor --scope=frontend --docker
# Add lockfile and package.json's of isolated subworkspace
FROM base AS installer
RUN apk add --no-cache libc6-compat
# Install build-essential (required by "talib" and "tulind")
RUN apk add --no-cache python3 make g++ gcc bash
RUN apk update
WORKDIR /app

Expand Down
2 changes: 2 additions & 0 deletions apps/frontend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ RUN turbo prune frontend --docker
# Add lockfile and package.json's of isolated subworkspace
FROM base AS installer
RUN apk add --no-cache libc6-compat
# Install build-essential (required by "talib" and "tulind")
RUN apk add --no-cache python3 make g++ gcc bash
RUN apk update
WORKDIR /app

Expand Down
2 changes: 2 additions & 0 deletions apps/processor/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ RUN turbo prune processor --docker
# Add lockfile and package.json's of isolated subworkspace
FROM base AS installer
RUN apk add --no-cache libc6-compat
# Install build-essential (required by "talib" and "tulind")
RUN apk add --no-cache python3 make g++ gcc bash
RUN apk update
WORKDIR /app

Expand Down

0 comments on commit 30185f4

Please sign in to comment.