Files
NaliiaERP/Dockerfile_Test

8 lines
276 B
Plaintext
Executable File

# TOMADO DE: https://hg.tryton.org/tryton-docker/file/tip/6.6/Dockerfile
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 curl && \
rm -rf /var/lib/apt/lists/*