| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- FROM node:16-alpine@sha256:72a490e7ed8aed68e16b8dc8f37b5bcc35c5b5c56ee3256effcdee63e2546f93
- ARG P2W_BASE_PATH=/usr/src/pyth2wormhole
- RUN apk --no-cache --update add python3 build-base # Needed by the Ethereum build
- WORKDIR ${P2W_BASE_PATH}
- RUN addgroup -S pyth -g 10001 && adduser -S pyth -G pyth -u 10001
- RUN chown -R pyth:pyth .
- USER pyth
- WORKDIR ${P2W_BASE_PATH}/ethereum
- ADD --chown=pyth:pyth ethereum .
- RUN npm install && npm run build
- USER root
- RUN apk del build-base # No longer needed after EVM build
- USER pyth
- # Adds p2w-sdk/js dependency
- ARG P2W_SDK_REL_PATH=third_party/pyth/p2w-sdk/js
- WORKDIR ${P2W_BASE_PATH}/${P2W_SDK_REL_PATH}
- ADD --chown=pyth:pyth ${P2W_SDK_REL_PATH} .
- RUN npm ci && npm run build && npm cache clean --force
- # Add the code and compile
- ARG P2W_RELAY_REL_PATH=third_party/pyth/p2w-relay
- WORKDIR ${P2W_BASE_PATH}/${P2W_RELAY_REL_PATH}
- ADD --chown=pyth:pyth ${P2W_RELAY_REL_PATH} .
- RUN npm ci && npm run build && npm cache clean --force
- # If you are building for production
- # RUN npm ci --only=production
- RUN mkdir -p ${P2W_BASE_PATH}/${P2W_RELAY_REL_PATH}/logs
|