leofan commited on
Commit
ac7bb48
1 Parent(s): 0ecc4d6

Upload Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -10
Dockerfile CHANGED
@@ -14,16 +14,7 @@ RUN poetry install --no-interaction --no-ansi --no-root
14
 
15
  RUN pip install --no-cache-dir --upgrade -r requirements.txt
16
 
17
- RUN useradd -m -u 1000 user
18
-
19
- USER user
20
-
21
- ENV HOME=/home/user \
22
- PATH=/home/user/.local/bin:$PATH
23
-
24
- WORKDIR $HOME/app
25
-
26
- COPY --chown=user ./app ./app
27
 
28
  RUN poetry install --no-interaction --no-ansi
29
 
 
14
 
15
  RUN pip install --no-cache-dir --upgrade -r requirements.txt
16
 
17
+ COPY ./app ./app
 
 
 
 
 
 
 
 
 
18
 
19
  RUN poetry install --no-interaction --no-ansi
20