mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-17 01:13:45 +00:00
deleting hardhat dockerfile
This commit is contained in:
parent
cc91691d15
commit
242b267328
1 changed files with 0 additions and 18 deletions
|
|
@ -1,18 +0,0 @@
|
|||
# Use an official Node.js runtime as a parent image
|
||||
FROM node:16
|
||||
|
||||
# Set the working directory inside the container
|
||||
WORKDIR /usr/src/app
|
||||
|
||||
# Install dependencies
|
||||
COPY package.json package-lock.json ./
|
||||
RUN npm install
|
||||
|
||||
# Copy the Hardhat project files into the container
|
||||
COPY . .
|
||||
|
||||
# Expose the port (optional depending on your app)
|
||||
EXPOSE 8545
|
||||
|
||||
# Default command to run when the container starts
|
||||
CMD ["npm", "run", "start"]
|
||||
Loading…
Reference in a new issue