Asaad Almutareb commited on
Commit
6cdd194
·
1 Parent(s): 306a36f

fixed dockerfile apt commands

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -3
Dockerfile CHANGED
@@ -9,9 +9,9 @@ RUN useradd -m -u 1000 user
9
  WORKDIR /app
10
 
11
  COPY --chown=user ./requirements.txt requirements.txt
12
- RUN sudo apt-get -y update
13
- RUN sudo apt-get -y upgrade
14
- RUN sudo apt-get install -y sqlite3 libsqlite3-dev
15
  RUN pip install --no-cache-dir --upgrade -r requirements.txt
16
 
17
  COPY --chown=user . /app
 
9
  WORKDIR /app
10
 
11
  COPY --chown=user ./requirements.txt requirements.txt
12
+ RUN apt-get -y update
13
+ RUN apt-get -y upgrade
14
+ RUN apt-get install -y sqlite3 libsqlite3-dev
15
  RUN pip install --no-cache-dir --upgrade -r requirements.txt
16
 
17
  COPY --chown=user . /app