Update Dockerfile
Browse files- Dockerfile +7 -1
Dockerfile
CHANGED
|
@@ -1,3 +1,9 @@
|
|
| 1 |
FROM nikolaik/python-nodejs:python3.10-nodejs20
|
| 2 |
|
| 3 |
-
RUN apt install
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
FROM nikolaik/python-nodejs:python3.10-nodejs20
|
| 2 |
|
| 3 |
+
RUN apt install wget
|
| 4 |
+
RUN wget -qO- https://get.pnpm.io/install.sh | ENV="$HOME/.bashrc" SHELL="$(which bash)" bash -
|
| 5 |
+
RUN pnpm -v
|
| 6 |
+
RUN git clone https://github.com/Narratium/Narratium.ai.git /app
|
| 7 |
+
|
| 8 |
+
WORKDIR /app/Narratium
|
| 9 |
+
|