Skip to content
Snippets Groups Projects

Finished API design and Frontend features

Merged Niels Jarne Timm requested to merge 13-api-design into main
37 files
+ 2530
332
Compare changes
  • Side-by-side
  • Inline
Files
37
src/Dockerfile 0 → 100644
+ 12
0
FROM python:3.12
WORKDIR /app
#copy G-Retriever ./G-Retriever
copy . ./src
RUN pip install pyg-lib -f https://data.pyg.org/whl/torch-2.3.0+cu118.html
RUN pip install -r ./src/requirements.txt
CMD ["fastapi", "dev", "src/api.py", "--host", "0.0.0.0"]
Loading