revert 6ee19f3b9ef166a3d1c2f6e782a0d59320fd37f6
All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 2m23s

revert Actualizacion de DockerFile API para Test de  DinkToPdf
This commit is contained in:
Leandro Hernan Rojas 2025-05-14 12:57:58 +00:00
parent 6ee19f3b9e
commit 2ff2a0377b

View File

@ -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