Skip to content
This repository has been archived by the owner on Jan 11, 2022. It is now read-only.

Commit

Permalink
Merge pull request #14 from andrusha/patch-1
Browse files Browse the repository at this point in the history
Fix ARM docker images
  • Loading branch information
anatolinicolae authored Nov 29, 2020
2 parents 17257ca + aec5c5b commit ed7dc73
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions arm32v7.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ COPY --from=builder qemu-arm-static /usr/bin
# Create app directory
WORKDIR /usr/src/app

# Required to build RE2
RUN apk add python make g++

# Install dependencies
COPY package.json ./package.json
COPY yarn.lock ./yarn.lock
Expand Down
3 changes: 3 additions & 0 deletions arm64v8.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ COPY --from=builder qemu-aarch64-static /usr/bin
# Create app directory
WORKDIR /usr/src/app

# Required to build RE2
RUN apk add python make g++

# Install dependencies
COPY package.json ./package.json
COPY yarn.lock ./yarn.lock
Expand Down

0 comments on commit ed7dc73

Please sign in to comment.