Skip to content

Commit

Permalink
Adding docker file for hardhat
Browse files Browse the repository at this point in the history
  • Loading branch information
san-est committed Jun 13, 2024
1 parent 66a2052 commit 9b37671
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions hardhat/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
FROM node:22
WORKDIR /app
COPY package.json .
COPY package-lock.json .
RUN npm install
COPY . .
EXPOSE 8545
CMD [ "npx", "hardhat", "node" ]

0 comments on commit 9b37671

Please sign in to comment.