Update Dockerfile
Browse files- 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
|