File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ ---
2+ " @api3/airnode-deployer " : patch
3+ " @api3/airnode-admin " : patch
4+ " @api3/airnode-node " : patch
5+ ---
6+
7+ fixed cmake issue
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ ENV appDir="/app" \
66 # https://github.com/changesets/changesets/blob/8c0846977597ddaf51aaeb35f1f0f9428bf8ba14/packages/cli/src/commands/publish/publishPackages.ts#L57
77 CI="true"
88
9+ RUN apk --update --no-cache add build-base cmake linux-headers
910RUN apk add --update --no-cache git rsync docker $([ $(arch) == "aarch64" ] && echo "python3 make g++" ) && \
1011 yarn global add npm && \
1112 # Download both solidity compilers as per: https://github.com/nomiclabs/hardhat/issues/1280#issuecomment-949822371
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ LABEL application=${name} \
1212
1313# Install airnode-admin
1414RUN npm set registry ${npmRegistryUrl} && \
15+ apk add --update --no-cache build-base g++ cmake linux-headers && \
1516 yarn global add ${packageName}@${npmTag} && \
1617 ln -s /usr/local/share/.config/yarn/global/node_modules/${packageName}/dist ${appDir} && \
1718 # Create user
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ COPY ./entrypoint.sh /entrypoint.sh
1515
1616RUN ARCH=`[ $(arch) == "x86_64" ] && echo "amd64" || echo "arm64" ` && \
1717 # Install external dependencies
18- apk add --update --no-cache su-exec git dos2unix && \
18+ apk add --update --no-cache su-exec git dos2unix build-base g++ cmake linux-headers && \
1919 # Download Terraform binary
2020 wget ${baseTerraformURL}${ARCH}.zip && \
2121 unzip *.zip -d /bin && \
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ COPY airnode-crontab ${cronjob}
1515COPY entrypoint.sh /entrypoint.sh
1616
1717# Install Tini to correctly pass signals
18- RUN apk add --update --no-cache tini dos2unix && \
18+ RUN apk add --update --no-cache tini dos2unix build-base g++ cmake linux-headers && \
1919 # Install airnode-node
2020 npm set registry ${npmRegistryUrl} && \
2121 yarn global add ${packageName}@${npmTag} && \
You can’t perform that action at this time.
0 commit comments