mirror of
https://github.com/sern-handler/automata
synced 2026-06-23 16:22:19 +00:00
* refactor: initial monorepo * chore: remove accidentally commited repos * chore: remove accidentally commited repos * feat: more progress * feat: finally monorepo done * feat: move away from pocketbase * fix: seren's reviews and schema frontend login errors * fix: for some reason didn't remove await lol
16 lines
246 B
Docker
16 lines
246 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 npm run build
|
|
|
|
CMD node dist/index.js |