go-ethereum/hardhat/Dockerfile
Ruslan Gladov f972dcace6 New flow
2024-06-30 21:02:40 +03:00

18 lines
No EOL
286 B
Docker

FROM node:22-alpine3.19
RUN apk add --no-cache bash
WORKDIR /usr/src/app
COPY . /usr/src/app
RUN npm install
RUN npm install wait-on
COPY ./entrypoint.sh /usr/local/bin
EXPOSE 8545
RUN chmod +x ./entrypoint.sh/entrypoint.sh
ENTRYPOINT ["/bin/sh", "/usr/local/bin/entrypoint.sh"]