forked from cerc-io/stack-orchestrator
14 lines
231 B
Docker
14 lines
231 B
Docker
|
FROM node:18.15.0-alpine3.16
|
||
|
|
||
|
RUN apk --update --no-cache add git python3 alpine-sdk bash
|
||
|
|
||
|
WORKDIR /app
|
||
|
|
||
|
COPY . .
|
||
|
|
||
|
RUN echo "Installing dependencies..." && \
|
||
|
yarn install && \
|
||
|
cd packages/snap
|
||
|
|
||
|
CMD ["bash", "-c", "yarn start"]
|