Prathamesh Musale
f989e87425
Part of [Create bridge channel in go-nitro](https://www.notion.so/Create-bridge-channel-in-go-nitro-22ce80a0d8ae4edb80020a8f250ea270) Reviewed-on: #15 Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com> Co-committed-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
11 lines
285 B
Docker
11 lines
285 B
Docker
FROM node:18.17.1-alpine3.18
|
|
|
|
RUN apk --update --no-cache add python3 alpine-sdk bash curl jq
|
|
|
|
WORKDIR /app
|
|
|
|
RUN npm config set @cerc-io:registry https://git.vdb.to/api/packages/cerc-io/npm/
|
|
|
|
RUN echo "Installing nitro-rpc-client" && \
|
|
npm install -g @cerc-io/nitro-rpc-client@0.1.6
|