Spaces:
Paused
Paused
Update Dockerfile
Browse files- Dockerfile +3 -1
Dockerfile
CHANGED
|
@@ -25,8 +25,10 @@ ENV PATH="/root/.npm-global/bin:$PATH"
|
|
| 25 |
RUN mkdir -p /app/node_modules
|
| 26 |
RUN chmod -R 777 /app/node_modules
|
| 27 |
|
|
|
|
|
|
|
|
|
|
| 28 |
WORKDIR /app
|
| 29 |
-
RUN rm -rf /app && git clone https://github.com/ReirLair/reikerpy.git /app
|
| 30 |
|
| 31 |
RUN pip install --upgrade pip
|
| 32 |
RUN pip install --no-cache-dir --root-user-action=ignore -r requirements.txt
|
|
|
|
| 25 |
RUN mkdir -p /app/node_modules
|
| 26 |
RUN chmod -R 777 /app/node_modules
|
| 27 |
|
| 28 |
+
RUN mkdir -p /app && rm -rf /app/*
|
| 29 |
+
RUN git clone https://github.com/ReirLair/reikerpy.git /app
|
| 30 |
+
|
| 31 |
WORKDIR /app
|
|
|
|
| 32 |
|
| 33 |
RUN pip install --upgrade pip
|
| 34 |
RUN pip install --no-cache-dir --root-user-action=ignore -r requirements.txt
|