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

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -2
Dockerfile CHANGED
@@ -4,6 +4,9 @@ FROM node:14
4
  # Instale Python e pip
5
  RUN apt-get update && apt-get install -y python3 python3-pip
6
 
 
 
 
7
  # Crie um diretório de trabalho
8
  WORKDIR /app
9
 
@@ -11,8 +14,8 @@ WORKDIR /app
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
 
4
  # Instale Python e pip
5
  RUN apt-get update && apt-get install -y python3 python3-pip
6
 
7
+ # Certifique-se de que pip está no PATH
8
+ RUN ln -s /usr/bin/pip3 /usr/bin/pip
9
+
10
  # Crie um diretório de trabalho
11
  WORKDIR /app
12
 
 
14
  COPY requirements.txt .
15
  COPY app.py .
16
 
17
+ # Instale as dependências Python usando pip
18
+ RUN pip install -r requirements.txt
19
 
20
  # Instale o WebTorrent globalmente usando npm
21
  RUN npm install -g webtorrent