added keycloak integration, user endpoints, env file

This commit is contained in:
2026-04-23 20:19:39 +03:00
parent 86eee49c43
commit 54de86fac8
13 changed files with 476 additions and 70 deletions

19
Dockerfile Executable file
View File

@@ -0,0 +1,19 @@
FROM ubuntu:22.04
# Install openbabel and python
RUN apt-get update \
&& apt-get install --yes --quiet --no-install-recommends \
python3 \
python3-pip \
&& apt-get clean && rm -rf /var/lib/apt/lists/*
WORKDIR /var/local
COPY requirements.txt .
# Install dependencies
RUN /usr/bin/python3 -m pip install --no-cache-dir -r requirements.txt
COPY src .
CMD uvicorn app:app --host 0.0.0.0 --port ${PORT} --log-level warning