shrimppiehotelrwanda commited on
Commit
5538798
·
verified ·
1 Parent(s): c063425

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -23,6 +23,7 @@ RUN useradd -m -u 1000 user
23
  USER user
24
  ENV HOME=/home/user \
25
  PATH=/home/user/.local/bin:$PATH
 
26
 
27
  # Pyenv
28
  RUN curl https://pyenv.run | bash
@@ -41,7 +42,6 @@ RUN pyenv install $PYTHON_VERSION && \
41
  RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
42
 
43
  # Set the working directory to /data if USE_PERSISTENT_DATA is set, otherwise set to $HOME/app
44
- RUN mkdir -p /data/outputs/images
45
  WORKDIR /data
46
  EXPOSE 9090
47
 
 
23
  USER user
24
  ENV HOME=/home/user \
25
  PATH=/home/user/.local/bin:$PATH
26
+ RUN mkdir -pv /data/outputs/images
27
 
28
  # Pyenv
29
  RUN curl https://pyenv.run | bash
 
42
  RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
43
 
44
  # Set the working directory to /data if USE_PERSISTENT_DATA is set, otherwise set to $HOME/app
 
45
  WORKDIR /data
46
  EXPOSE 9090
47