added comp_systems and all databases

This commit is contained in:
2026-05-06 14:46:50 +03:00
parent 861741bde1
commit fad9fcefac
24 changed files with 1403 additions and 243 deletions

19
dockerfile_build/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