- Changes contract tests for EIP-6780 (selfdestruct change) - see cerc-io/ipld-eth-server#264. - Beacon block roots are now injected into the blockchain before processing transactions (https://eips.ethereum.org/EIPS/eip-4788) Reviewed-on: #8 Reviewed-by: jonathanface <jonathanface@noreply.git.vdb.to>
13 lines
246 B
Docker
13 lines
246 B
Docker
# Downgrade from 18.16, see https://github.com/NomicFoundation/hardhat/issues/3877
|
|
FROM node:20-slim
|
|
|
|
WORKDIR /usr/src/app
|
|
COPY package*.json ./
|
|
RUN npm ci
|
|
COPY . .
|
|
RUN npm run compile && ls -lah
|
|
|
|
EXPOSE 3000
|
|
|
|
ENTRYPOINT ["node", "src/index.js"]
|