mirror of
https://github.com/sern-handler/automata
synced 2026-06-21 23:32:18 +00:00
18 lines
266 B
Docker
18 lines
266 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
|
|
|
|
RUN bash ./util/setup.sh
|
|
|
|
COPY package.json ./
|
|
|
|
RUN npm install
|
|
|
|
COPY . .
|
|
|
|
RUN tsc --build
|
|
|
|
RUN node dist/index.js |