mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-19 10:22:23 +00:00
19 lines
No EOL
313 B
Docker
19 lines
No EOL
313 B
Docker
FROM node:22-alpine3.19
|
|
|
|
RUN apk add --no-cache bash
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
COPY . /usr/src/app
|
|
|
|
RUN npm install --save-dev hardhat
|
|
|
|
RUN npm install wait-on
|
|
|
|
COPY ./hardhat/entrypoint.sh /usr/local/bin
|
|
|
|
EXPOSE 8545
|
|
|
|
RUN chmod +x /usr/local/bin/entrypoint.sh
|
|
|
|
ENTRYPOINT ["/bin/sh", "/usr/local/bin/entrypoint.sh"] |