16 lines
420 B
Plaintext
Executable File
16 lines
420 B
Plaintext
Executable File
# TOMADO DE: https://hg.tryton.org/tryton-docker/file/tip/6.6/Dockerfile
|
|
FROM python:3.11-bullseye
|
|
|
|
ARG TRYTOND_VERSION
|
|
ARG GITEA_USER
|
|
ARG GITEA_PASSWORD
|
|
ARG GITEA_DOMAIN
|
|
ARG FACHO
|
|
ARG FACHO_BRANCH
|
|
|
|
# trytond DB_CACHE requiere commandos `pg_dump` y `pg_restore`
|
|
RUN apt-get update && apt-get install -y postgresql-client
|
|
|
|
# Instalar psycopg2, flake8 y trytond
|
|
RUN pip install psycopg2 flake8 trytond==${TRYTOND_VERSION}
|