zwv9 commited on
Commit
f02bed7
1 Parent(s): bcc33d9

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +11 -0
Dockerfile ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM oven/bun:1 as base
2
+ WORKDIR /code
3
+
4
+ RUN git clone https://github.com/0zl/phr.git .
5
+ RUN bash scripts/dependencies_no_browser.sh
6
+
7
+ RUN bun install
8
+ COPY . .
9
+
10
+ EXPOSE 7860
11
+ CMD [ "bun", "run", "main.ts" ]