rkservers commited on
Commit
febcee8
·
verified ·
1 Parent(s): 4ad949e

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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