13ze commited on
Commit
a57b48a
1 Parent(s): 9c3ff33

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -11,8 +11,8 @@ WORKDIR /app
11
  COPY requirements.txt .
12
  COPY app.py .
13
 
14
- # Instale as dependências Python
15
- RUN pip install -r requirements.txt
16
 
17
  # Instale o WebTorrent globalmente usando npm
18
  RUN npm install -g webtorrent
 
11
  COPY requirements.txt .
12
  COPY app.py .
13
 
14
+ # Instale as dependências Python usando python3 -m pip
15
+ RUN python3 -m pip install -r requirements.txt
16
 
17
  # Instale o WebTorrent globalmente usando npm
18
  RUN npm install -g webtorrent