From b32114f88304b3db2dc8b1ffd22390a632a41aa4 Mon Sep 17 00:00:00 2001 From: aserrador Date: Thu, 18 Jun 2026 18:17:39 -0500 Subject: [PATCH] refactor: System Deploy --- .dev/requirements_dev.txt | 3 +-- Dockerfile_live | 2 +- Rakefile | 6 +++--- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/.dev/requirements_dev.txt b/.dev/requirements_dev.txt index e9f9c73..5125a4f 100644 --- a/.dev/requirements_dev.txt +++ b/.dev/requirements_dev.txt @@ -5,5 +5,4 @@ inotify==0.2.10 honcho==2.0.0 pudb==2025.1 urwid==3.0.2 -freezegun==1.5.1 -psycopg2==2.9.10 +freezegun==1.5.1 diff --git a/Dockerfile_live b/Dockerfile_live index 44e2e69..3dfc3df 100644 --- a/Dockerfile_live +++ b/Dockerfile_live @@ -1,5 +1,5 @@ # TOMADO DE: https://hg.tryton.org/tryton-docker/file/tip/6.6/Dockerfile -FROM node as builder-node +FROM node AS builder-node ARG TRYTOND_VERSION diff --git a/Rakefile b/Rakefile index 740b126..8e0b66f 100644 --- a/Rakefile +++ b/Rakefile @@ -1,13 +1,13 @@ require 'yaml' require 'digest' -DOCKER_COMPOSE_TEST='docker-compose.test.yml' +DOCKER_COMPOSE_TEST='docker-compose.test.yaml' ENV_FILE_DEV='.env.development' -DOCKER_COMOPSE_LIVE='docker-compose.live.yml' +DOCKER_COMPOSE_LIVE='docker-compose.live.yaml' ENV_FILE_LIVE='.env.development' -DOCKER_COMPOSE_DEPLOY='docker-compose.prod.yml' +DOCKER_COMPOSE_DEPLOY='docker-compose.prod.yaml' ENV_FILE_DEPLOY='.env.production' desc 'iniciar entorno'