ZSCGR commited on
Commit
ed636a8
·
verified ·
1 Parent(s): 63427c1

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -1
Dockerfile CHANGED
@@ -5,6 +5,8 @@ RUN corepack enable
5
  RUN git clone https://github.com/Narratium/Narratium.ai.git /app
6
  WORKDIR /app/Narratium
7
  RUN pnpm install
 
 
8
 
9
  EXPOSE 3000
10
- CMD["pnpm run dev"]
 
5
  RUN git clone https://github.com/Narratium/Narratium.ai.git /app
6
  WORKDIR /app/Narratium
7
  RUN pnpm install
8
+ COPY run.sh /run.sh
9
+ RUN chmod +x /run.sh
10
 
11
  EXPOSE 3000
12
+ CMD["sh", "run.sh"]