seguimos fixeando a esos
Some checks failed
build-and-push / build (push) Failing after 18s
build-and-push / deploy (push) Has been skipped

This commit is contained in:
2025-05-14 18:51:18 -06:00
parent 21dbb4f960
commit 3595d4c76b
2 changed files with 3 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
// planilla/api/server.js // planilla/api/server.js
import express from 'express'; import express from 'express';
import { PrismaClient } from 'prisma/generated/prisma/client'; import { PrismaClient } from './prisma/generated/client';
const prisma = new PrismaClient(); const prisma = new PrismaClient();
const app = express(); const app = express();

View File

@@ -1,5 +1,6 @@
# base liviano con Node y cron # base liviano con Node y cron
FROM node:20-alpine FROM node:24-slim
# instala cronie # instala cronie
RUN apk add --no-cache cronie RUN apk add --no-cache cronie