File tree Expand file tree Collapse file tree 3 files changed +14
-16
lines changed Expand file tree Collapse file tree 3 files changed +14
-16
lines changed Original file line number Diff line number Diff line change 11.bak
22.dockerignore
3- .gitingore
3+ .gitignore
44.npmignore
55.solhint.json
66.solhintignore
1212docker /
1313node_modules /
1414** /.env
15+ ** /* .md
1516** /* .tgz
Original file line number Diff line number Diff line change 1- FROM node:24-alpine AS base
2-
3- WORKDIR /app
1+ FROM node:24-bookworm AS base
42
3+ RUN apt update && apt upgrade -y
4+ RUN apt install build-essential;
55RUN npm install -g pnpm
6+ RUN npm install -g node-gyp
67
7- COPY migrations/ /app/migrations
8- COPY scripts/ /app/scripts
9- COPY src/ /app/src
10- COPY .no-postinstall /app
11- COPY hardhat.config.js /app
12- COPY package.json /app
13- COPY truffle-config.cjs /app
14- COPY tsconfig.json /app
15- COPY pnpm-lock.yaml /app
8+ WORKDIR /app
9+ COPY . /app
1610
1711RUN pnpm install --frozen-lockfile
1812
13+ RUN chmod +x src/bin/index.cjs
14+ RUN chmod +x src/bin/bots/*
15+
1916CMD ["node" , "/app/src/bin/bots/randomizer.cjs" ]
Original file line number Diff line number Diff line change 11{
22 "name" : " @witnet/solidity" ,
3- "version" : " 3.0.14 " ,
3+ "version" : " 3.0.15 " ,
44 "description" : " Wit/Oracle Solidity Framework for EVM-compatible chains" ,
55 "author" :
" Witnet Foundation <[email protected] >" ,
66 "license" : " MIT" ,
130130 " @apollo/protobufjs" ,
131131 " @trufflesuite/bigint-buffer" ,
132132 " @witnet/sdk" ,
133- " bufferutil " ,
133+ " buffer-util " ,
134134 " core-js" ,
135135 " es5-ext" ,
136136 " esbuild" ,
139139 " protobufjs" ,
140140 " secp256k1" ,
141141 " truffle" ,
142- " utf-8-validate" ,
142+ " utf-8-validate" ,
143143 " web3" ,
144144 " web3-bzz" ,
145145 " web3-shh"
You can’t perform that action at this time.
0 commit comments