FROM oven/bun:1 WORKDIR /code RUN apt update && apt install -y git RUN git clone https://github.com/0zl/phr.git . RUN bash scripts/dependencies.sh RUN bun install COPY . . EXPOSE 7860 CMD [ "bun", "run", "main.ts" ]