feat(module): Add module for google integration

This commit is contained in:
2026-05-05 13:09:56 -05:00
parent f2c176d0fd
commit ce367e8ce0
8 changed files with 19 additions and 7 deletions

View File

@@ -1,5 +1,7 @@
# TOMADO DE: https://hg.tryton.org/tryton-docker/file/tip/6.6/Dockerfile
FROM python:3.11-bullseye
FROM debian:12-slim
# trytond DB_CACHE requiere commandos `pg_dump` y `pg_restore`
RUN apt-get update && apt-get install -y postgresql-client
RUN apt-get update && \
apt-get install -y postgresql-client python3-pip curl && \
rm -rf /var/lib/apt/lists/*