moriire commited on
Commit
722a6cd
1 Parent(s): 56933d4

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -5
Dockerfile CHANGED
@@ -14,17 +14,17 @@ RUN apt-get update && apt-get upgrade -y && apt-get install -y --no-install-reco
14
  ninja-build \
15
  libopenblas-dev \
16
  build-essential
17
-
 
 
 
 
18
  RUN python3 -m pip install --upgrade pip
19
  # Install requirements.txt
20
  RUN pip install --no-cache-dir --upgrade -r requirements.txt
21
 
22
  RUN useradd -ms /bin/bash user
23
  RUN mkdir /app
24
- WORKDIR /app
25
-
26
- COPY . .
27
-
28
 
29
  # Set environment variable for the host
30
  ENV HOST=0.0.0.0
 
14
  ninja-build \
15
  libopenblas-dev \
16
  build-essential
17
+
18
+ WORKDIR /app
19
+
20
+ COPY . .
21
+
22
  RUN python3 -m pip install --upgrade pip
23
  # Install requirements.txt
24
  RUN pip install --no-cache-dir --upgrade -r requirements.txt
25
 
26
  RUN useradd -ms /bin/bash user
27
  RUN mkdir /app
 
 
 
 
28
 
29
  # Set environment variable for the host
30
  ENV HOST=0.0.0.0