stack-orchestrator/app/data/container-build/cerc-react-peer/Dockerfile

15 lines
259 B
Docker
Raw Normal View History

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