mirror of
https://github.com/yzernik/squeaknode.git
synced 2026-08-18 13:09:08 +02:00
* Add itest for squeaknode client, not passing yet * Got working itest with get wallet balance * Change name of squeak node client class.
11 lines
262 B
Docker
11 lines
262 B
Docker
FROM mhart/alpine-node:latest AS builder
|
|
WORKDIR /app
|
|
COPY ./frontend/squeakclient-frontend .
|
|
RUN npm install
|
|
RUN yarn run build
|
|
|
|
FROM mhart/alpine-node
|
|
RUN yarn global add serve
|
|
WORKDIR /app
|
|
COPY --from=builder /app/build .
|
|
CMD ["serve", "-p", "80", "-s", "."]
|