This repository has been archived on 2026-04-02. You can view files and clone it, but cannot push or open issues or pull requests.
stack-orchestrator/app/data/container-build/cerc-react-peer/Dockerfile

15 lines
259 B
Docker

FROM node:18.15.0-alpine3.16
RUN apk --update --no-cache add make git python3 jq
WORKDIR /app
COPY . .
RUN yarn global add serve
RUN echo "Building react-peer" && \
yarn install --ignore-scripts && yarn build --ignore @cerc-io/test-app
WORKDIR /app