Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
@@ -2,6 +2,9 @@ FROM nikolaik/python-nodejs:python3.10-nodejs20
|
|
2 |
|
3 |
RUN corepack enable
|
4 |
USER root
|
|
|
|
|
|
|
5 |
RUN mkdir /app
|
6 |
RUN chmod -R 777 /app
|
7 |
RUN git clone https://github.com/Narratium/Narratium.ai.git /app
|
|
|
2 |
|
3 |
RUN corepack enable
|
4 |
USER root
|
5 |
+
RUN curl --proto '=https' --tlsv1.2 https://sh.rustup.rs -sSf | sh -s -- -y
|
6 |
+
ENV CARGO_HOME="/root/.cargo"
|
7 |
+
ENV PATH="/root/.cargo/bin:${PATH}"
|
8 |
RUN mkdir /app
|
9 |
RUN chmod -R 777 /app
|
10 |
RUN git clone https://github.com/Narratium/Narratium.ai.git /app
|