RohanVashisht commited on
Commit
719047c
·
verified ·
1 Parent(s): 7697285

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -2
Dockerfile CHANGED
@@ -21,12 +21,13 @@ RUN git clone https://github.com/zigistry/database .
21
  # Install dependencies
22
  RUN bun install --production
23
 
24
- RUN ls
25
-
26
  # Hugging Face expects the app to run on $PORT
27
  ENV PORT=7860
28
 
29
  # Expose that port
30
  EXPOSE $PORT
 
 
 
31
  # Run app
32
  CMD ["bun", "./src/index.ts"]
 
21
  # Install dependencies
22
  RUN bun install --production
23
 
 
 
24
  # Hugging Face expects the app to run on $PORT
25
  ENV PORT=7860
26
 
27
  # Expose that port
28
  EXPOSE $PORT
29
+
30
+ RUN ls
31
+
32
  # Run app
33
  CMD ["bun", "./src/index.ts"]