2024-07-17 09:29:46 +00:00
|
|
|
FROM node:18.17.1-alpine3.18
|
|
|
|
|
|
|
|
RUN apk --update --no-cache add python3 alpine-sdk bash curl jq
|
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
COPY . .
|
|
|
|
|
|
|
|
RUN echo "Installing dependencies" && \
|
|
|
|
yarn && yarn build
|
|
|
|
|
2024-07-19 05:27:46 +00:00
|
|
|
RUN echo "Installing nitro-rpc-client" && \
|
|
|
|
npm install -g ./packages/nitro-rpc-client
|