Files
automata/Dockerfile
2023-05-10 16:24:03 +02:00

16 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 ./util/setup.sh
RUN npm install
RUN tsc --build
RUN node dist/index.js