nmarafo commited on
Commit
d7ed8d0
verified
1 Parent(s): bd39fcf

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -0
Dockerfile CHANGED
@@ -12,6 +12,7 @@ RUN apt-get update && apt-get install -y \
12
  RUN git clone https://github.com/ggerganov/llama.cpp.git /llama.cpp
13
  WORKDIR /llama.cpp
14
  RUN make
 
15
 
16
  # Establece el directorio de trabajo
17
  WORKDIR /app
@@ -25,3 +26,4 @@ COPY . .
25
 
26
  # Ejecuta la aplicaci贸n
27
  CMD ["python", "app.py"]
 
 
12
  RUN git clone https://github.com/ggerganov/llama.cpp.git /llama.cpp
13
  WORKDIR /llama.cpp
14
  RUN make
15
+ RUN chmod +x /llama.cpp/main # Asegura que el ejecutable tenga permisos de ejecuci贸n
16
 
17
  # Establece el directorio de trabajo
18
  WORKDIR /app
 
26
 
27
  # Ejecuta la aplicaci贸n
28
  CMD ["python", "app.py"]
29
+