Update Dockerfile
Browse files- Dockerfile +7 -3
Dockerfile
CHANGED
@@ -7,9 +7,13 @@ RUN chmod -R 777 /app
|
|
7 |
RUN git clone https://github.com/Narratium/Narratium.ai.git /app
|
8 |
WORKDIR /app/Narratium
|
9 |
RUN pnpm install
|
10 |
-
|
11 |
-
RUN
|
|
|
|
|
|
|
|
|
12 |
|
13 |
EXPOSE 3000
|
14 |
|
15 |
-
CMD ["sh", "/run.sh"]
|
|
|
7 |
RUN git clone https://github.com/Narratium/Narratium.ai.git /app
|
8 |
WORKDIR /app/Narratium
|
9 |
RUN pnpm install
|
10 |
+
RUN npm install -g pake-cli
|
11 |
+
RUN pnpm pake-linux
|
12 |
+
RUN ls /app
|
13 |
+
RUN ls /app/Narratium
|
14 |
+
#COPY run.sh /run.sh
|
15 |
+
#RUN chmod +x /run.sh
|
16 |
|
17 |
EXPOSE 3000
|
18 |
|
19 |
+
#CMD ["sh", "/run.sh"]
|