Spaces:
Runtime error
Runtime error
shenchucheng
commited on
Commit
•
3cd91bf
1
Parent(s):
63b51a0
update Dockerfile
Browse files- Dockerfile +4 -5
Dockerfile
CHANGED
@@ -16,14 +16,13 @@ ENV CHROME_BIN="/usr/bin/chromium" \
|
|
16 |
RUN npm install -g @mermaid-js/mermaid-cli &&\
|
17 |
npm cache clean --force
|
18 |
|
|
|
|
|
19 |
# Install Python dependencies and install MetaGPT
|
20 |
COPY requirements.txt requirements.txt
|
21 |
|
22 |
-
RUN pip install --no-cache-dir -r requirements.txt
|
23 |
-
|
24 |
-
WORKDIR /app
|
25 |
-
|
26 |
-
RUN mkdir -p /app/logs && chmod 777 /app/logs && \
|
27 |
mkdir -p /app/workspace && chmod 777 /app/workspace && \
|
28 |
mkdir -p /app/storage && chmod 777 /app/storage
|
29 |
|
|
|
16 |
RUN npm install -g @mermaid-js/mermaid-cli &&\
|
17 |
npm cache clean --force
|
18 |
|
19 |
+
WORKDIR /app
|
20 |
+
|
21 |
# Install Python dependencies and install MetaGPT
|
22 |
COPY requirements.txt requirements.txt
|
23 |
|
24 |
+
RUN pip install --no-cache-dir -r requirements.txt && \
|
25 |
+
mkdir -p /app/logs && chmod 777 /app/logs && \
|
|
|
|
|
|
|
26 |
mkdir -p /app/workspace && chmod 777 /app/workspace && \
|
27 |
mkdir -p /app/storage && chmod 777 /app/storage
|
28 |
|