diff --git a/phronCare.API/Dockerfile b/phronCare.API/Dockerfile index 4e71ac9..4dbddae 100644 --- a/phronCare.API/Dockerfile +++ b/phronCare.API/Dockerfile @@ -7,16 +7,6 @@ WORKDIR /app EXPOSE 8080 EXPOSE 8081 -# 🔧 CAMBIO MÍNIMO: Instalación de wkhtmltopdf y dependencias -USER root -RUN apt-get update && \ - apt-get install -y --no-install-recommends \ - wkhtmltopdf \ - libfontconfig1 \ - libxrender1 \ - libjpeg62-turbo \ - && apt-get clean && rm -rf /var/lib/apt/lists/* -USER app # Instalación de Node.js en la fase base (si lo necesitas para el contenedor final) #RUN apt-get update && apt-get install -y nodejs npm