nitro-stack/stack-orchestrator/container-build/cerc-nitro-contracts/Dockerfile
2024-10-11 10:09:08 +05:30

11 lines
180 B
Docker

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