kristiel / Dockerfile
zwv9's picture
Create Dockerfile
f02bed7
raw
history blame
No virus
200 Bytes
FROM oven/bun:1 as base
WORKDIR /code
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" ]