Create Dockerfile
Browse files- Dockerfile +24 -0
Dockerfile
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Use uma imagem base que tenha Python e Node.js
|
2 |
+
FROM node:14
|
3 |
+
|
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 |
+
|
10 |
+
# Copie os arquivos de dependências
|
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
|
19 |
+
|
20 |
+
# Exponha a porta usada pelo Gradio
|
21 |
+
EXPOSE 7860
|
22 |
+
|
23 |
+
# Comando para iniciar o aplicativo
|
24 |
+
CMD ["python3", "app.py"]
|