mirror of
https://github.com/sern-handler/automata
synced 2026-06-06 01:16:51 +00:00
15 lines
244 B
Docker
15 lines
244 B
Docker
FROM node:lts-alpine
|
|
|
|
RUN apk add git bash curl
|
|
RUN bash < <(curl -s https://raw.githubusercontent.com/babashka/babashka/master/install)
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
|
|
RUN bash ./apps/api/util/setup.sh
|
|
|
|
RUN yarn
|
|
RUN yarn build:api
|
|
|
|
CMD yarn start:api |