Compare commits

..

3 Commits
v0.5 ... master

Author SHA1 Message Date
fed8c4119f Readme.md hinzugefügt 2024-10-30 15:20:15 +01:00
56ad12d622
Paths
All checks were successful
Build and push Docker image in git push / build (push) Successful in 1h17m13s
2024-10-04 22:19:20 +02:00
3db84dfb80
Yaml Gammel
All checks were successful
Build and push Docker image in git push / build (push) Successful in 2h3m20s
2024-10-04 20:20:00 +02:00
3 changed files with 10 additions and 5 deletions

View File

@ -15,11 +15,11 @@ jobs:
- name: Get repository code
uses: actions/checkout@v4
- name: ARM64 support: QEMU
- name: ARM64 add QEMU
uses: docker/setup-qemu-action@v3
with:
platforms: arm64
- name: ARM64 support: Docker buildx
- name: ARM64 setup Docker buildx
uses: docker/setup-buildx-action@v3
- name: Build the images

5
Readme.md Normal file
View File

@ -0,0 +1,5 @@
> [!NOTE]
> In diesem Repository befinden sich die Quelldaten und Skripte zur Erstellung der Docker-Base-Images.
> [!WARNING]
> Um die Plattform zu benutzen, bitte das [Agent-Template](https://git.chai.uni-hamburg.de/UMS-Agenten/Agent-Template) benutzen!

View File

@ -40,10 +40,10 @@ RUN if [ ! -d /usr/local/cuda/ ]; then \
faiss-gpu-cu12; \
fi;
RUN mkdir /ums-agenten/
RUN mkdir -p /ums-agenten/persist/
ENV NLTK_DATA=/ums-agenten/nltk/
ENV HF_HOME=/ums-agenten/hf_home/
ENV NLTK_DATA=/ums-agenten/persist/nltk/
ENV HF_HOME=/ums-agenten/persist/hf_home/
COPY ./docker/$PIP_REQ_FILE /ums-agenten/requirements.txt
RUN pip3 install --break-system-packages --no-cache-dir -r /ums-agenten/requirements.txt \