ahmedzein commited on
Commit
7ceaaf7
·
verified ·
1 Parent(s): 4833179

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -6,6 +6,9 @@ WORKDIR /usr/src/app
6
  RUN apt-get update
7
  # RUN apt-get install -y libgl1-mesa-glx
8
  RUN apt install -y python3-pip
 
 
 
9
 
10
  COPY requirements.txt .
11
 
 
6
  RUN apt-get update
7
  # RUN apt-get install -y libgl1-mesa-glx
8
  RUN apt install -y python3-pip
9
+ RUN apt install python3-venv
10
+ RUN python3 -m venv .venv
11
+ RUN source .venv/bin/activate
12
 
13
  COPY requirements.txt .
14