kristiel / Dockerfile
zwv9's picture
Update Dockerfile
da02f8b
raw
history blame
215 Bytes
FROM oven/bun:1
WORKDIR /code
RUN apt install -y git
RUN git clone https://github.com/0zl/phr.git .
RUN bash scripts/dependencies_no_browser.sh
RUN bun install
COPY . .
EXPOSE 7860
CMD [ "bun", "run", "main.ts" ]