Prathamesh Musale
6b74477aff
Part of [Create a public laconicd testnet](https://www.notion.so/Create-a-public-laconicd-testnet-896a11bdd8094eff8f1b49c0be0ca3b8) Reviewed-on: #2 Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com> Co-committed-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
13 lines
249 B
JSON
13 lines
249 B
JSON
FROM cerc/webapp-base:local as builder
|
|
|
|
ARG CERC_BUILD_TOOL
|
|
ARG CERC_BUILD_OUTPUT_DIR
|
|
|
|
WORKDIR /app
|
|
COPY . .
|
|
RUN rm -rf node_modules build dist .next*
|
|
RUN /scripts/build-app.sh /app /data
|
|
|
|
FROM cerc/webapp-base:local
|
|
COPY --from=builder /data /data
|