I have the below simple Dockerfile, i need the container to contain hardhat, how can I install hardhat inside the container?
FROM python:3.9
WORKDIR /app
COPY . .
RUN pip install -r env/requirements.txt
CMD ["python3","main.py"]
ability to run npm install --save-dev @nomicfoundation/hardhat-ignition-ethers in docker
Maybe it's this simple