mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-19 18:32:23 +00:00
15 lines
No EOL
215 B
Docker
15 lines
No EOL
215 B
Docker
FROM node:lts-alpine
|
|
|
|
RUN apk add --no-cache bash
|
|
|
|
WORKDIR /usr/app
|
|
|
|
COPY package*.json ./
|
|
|
|
RUN npm install
|
|
|
|
COPY . .
|
|
|
|
EXPOSE 8545
|
|
|
|
CMD ["npx", "hardhat", "ignition", "deploy", "/usr/app/ignition/modules/Apollo.js"] |