15 lines
223 B
Docker
15 lines
223 B
Docker
FROM node:18.15.0-alpine3.16
|
|
|
|
RUN apk --update --no-cache add make git
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
|
|
RUN yarn global add serve
|
|
|
|
RUN echo "Building react-peer" && \
|
|
yarn && yarn build --ignore @cerc-io/test-app
|
|
|
|
WORKDIR /app
|