dependency and env variables

This commit is contained in:
Thomas Nahuel Rusiecki 2025-01-31 02:35:10 -03:00
parent 1f0a9a60ce
commit bb54ed1177
2 changed files with 11 additions and 0 deletions

View file

@ -71,3 +71,13 @@ IDHUB_ENABLE_EMAIL=false
IDHUB_ENABLE_2FACTOR_AUTH=false
IDHUB_ENABLE_DOMAIN_CHECKER=false
IDHUB_PREDEFINED_TOKEN='27f944ce-3d58-4f48-b068-e4aa95f97c95'
#POSTGRES VARS
DB_NAME="devicehub"
DB_USER="ereuse"
DB_PASSWORD="ereuse"
DB_DOMAIN=localhost
DB_PORT=8000

View file

@ -4,6 +4,7 @@ FROM python:3.11.10-slim-bookworm
RUN apt update && \
apt-get install -y \
python3-xapian \
python3-psycopg2 \
git \
sqlite3 \
curl \