From 6b1362c166fc5f51c3bcf316a99116f0d11074a5 Mon Sep 17 00:00:00 2001 From: zman Date: Fri, 7 Feb 2025 21:49:40 -0500 Subject: [PATCH] database --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 194e62d..e3f54c7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,6 +2,8 @@ FROM python:3.13-slim WORKDIR /app +ENV DATABASE_URL postgresql://poggers:giga!@192.168.1.41:5432/omegatcgdb + COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt