mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-19 10:22:23 +00:00
commit
bcb4bd77bb
2 changed files with 3 additions and 3 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -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 &
|
||||
|
|
|
|||
Loading…
Reference in a new issue