feat(Docker): add curl dependencie

This commit is contained in:
2026-04-06 22:41:22 -05:00
parent e788de8acb
commit f2c176d0fd

View File

@@ -13,8 +13,10 @@ RUN cd /package && bower install --allow-root
FROM debian:12-slim FROM debian:12-slim
# trytond DB_CACHE requiere commandos `pg_dump` y `pg_restore` # trytond DB_CACHE requiere commandos `pg_dump` y `pg_restore`
RUN apt-get update && apt-get install -y postgresql-client python3-pip RUN apt-get update && \
apt-get install -y postgresql-client python3-pip curl && \
rm -rf /var/lib/apt/lists/*
# TOMADO DE: https://hg.tryton.org/tryton-docker/file/tip/6.6/Dockerfile # TOMADO DE: https://hg.tryton.org/tryton-docker/file/tip/6.6/Dockerfile
COPY --from=builder-node /package /var/lib/trytond/www COPY --from=builder-node /package /var/lib/trytond/www