Files
automata/apps/api/Dockerfile
SrIzan10 40113a840d feat!: monorepo (#12)
* 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
2023-12-27 18:39:26 +01:00

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