New hardhat path

This commit is contained in:
Ruslan Gladov 2024-07-03 11:51:49 +03:00
parent 16bc3d0ba6
commit 7753b4fb32
2 changed files with 3 additions and 3 deletions

View file

@ -2,9 +2,9 @@ FROM node:22-alpine3.19
RUN apk add --no-cache bash
WORKDIR /usr/src/app
WORKDIR /usr/src/app/hardhat
COPY . /usr/src/app
COPY . /usr/src/app/hardhat
RUN npm install --save-dev hardhat

View file

@ -1,7 +1,7 @@
#!/bin/sh
# Change to the correct directory
cd /usr/src/app;
cd /usr/src/app/hardhat;
# Start hardhat node as a background process
nohup npx hardhat node &