From 242b267328a3c3e6ab1c33e2438c1ef8e49224d6 Mon Sep 17 00:00:00 2001 From: ivaylorashkov Date: Tue, 18 Feb 2025 16:05:27 +0200 Subject: [PATCH] deleting hardhat dockerfile --- hardhat/Dockerfile | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 hardhat/Dockerfile diff --git a/hardhat/Dockerfile b/hardhat/Dockerfile deleted file mode 100644 index 7e0bc5f373..0000000000 --- a/hardhat/Dockerfile +++ /dev/null @@ -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"]