Roy Crihfield
688b5c817a
Most notable changes are the updates to the test contracts: due to https://eips.ethereum.org/EIPS/eip-6780, SELFDESTRUCT no longer destroys a contract (unless it occurs in the creating transaction), so CREATE2 can no longer redeploy contracts to the same address. Reviewed-on: #264
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"]
|