paraAI_CHATBOT / Dockerfile
caarleexx's picture
Update Dockerfile
05c88c8 verified
raw
history blame contribute delete
314 Bytes
# Dockerfile para HF Space
FROM python:3.10-slim
WORKDIR /app
# Instala dependências
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copia código
COPY . .
# Dá permissão de execução
RUN chmod +x start.sh
# Portas
EXPOSE 7860
# Comando de inicialização
CMD ["./start.sh"]