deleting hardhat dockerfile

This commit is contained in:
ivaylorashkov 2025-02-18 16:05:27 +02:00
parent cc91691d15
commit 242b267328

View file

@ -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"]