Tu Nombre commited on
Commit
31a5203
·
1 Parent(s): e689602

Actualización: Cambio a modelo Llama 3.1 8B

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -11
Dockerfile CHANGED
@@ -1,22 +1,16 @@
1
  FROM python:3.9-slim
2
 
3
- # Instalar dependencias esenciales y Google Chrome moderno
4
- RUN apt-get update && apt-get install -y \
 
 
5
  wget \
6
  gnupg \
7
  curl \
8
  unzip \
9
- libfontconfig1 \
10
- libglib2.0-0 \
11
- libnss3 \
12
- fonts-liberation \
13
  libvlc-dev \
14
  libvlccore-dev \
15
- xdg-utils \
16
- && wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - \
17
- && sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list' \
18
- && apt-get update \
19
- && apt-get install -y google-chrome-stable \
20
  && apt-get clean \
21
  && rm -rf /var/lib/apt/lists/*
22
 
 
1
  FROM python:3.9-slim
2
 
3
+ # Instalar Chromium de forma optimizada y ligera para evitar Timeouts
4
+ RUN apt-get update && apt-get install -y --no-install-recommends \
5
+ chromium \
6
+ chromium-driver \
7
  wget \
8
  gnupg \
9
  curl \
10
  unzip \
 
 
 
 
11
  libvlc-dev \
12
  libvlccore-dev \
13
+ fonts-liberation \
 
 
 
 
14
  && apt-get clean \
15
  && rm -rf /var/lib/apt/lists/*
16