Compare commits

...

1 Commits

Author SHA1 Message Date
f2c176d0fd feat(Docker): add curl dependencie 2026-04-06 22:41:22 -05:00

View File

@@ -13,7 +13,9 @@ RUN cd /package && bower install --allow-root
FROM debian:12-slim
# 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