File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change 25
25
uses : actions/checkout@v4
26
26
with :
27
27
submodules : ' recursive'
28
+ path : ' rvib'
28
29
29
30
- name : Build Docker Image
30
31
run : |
32
+ cd rvib
31
33
docker build -f ./base_image/build_scripts/Dockerfile . -t opensearchstaging/remote-vector-index-builder:faiss-base-snapshot
32
34
33
35
- name : Configure AWS Credentials
56
58
- name : Runner Cleanups
57
59
if : always()
58
60
run : |
61
+ # Docker cleanup
59
62
docker logout
60
63
docker system prune -a -f
64
+
65
+ # Workspace cleanup
61
66
rm -rf ${{ github.workspace }}/*
62
67
63
68
# Trigger build of core image since base image is changed
66
71
uses : ./.github/workflows/publish_remote_core_image.yml
67
72
secrets :
68
73
REMOTE_VECTOR_DOCKER_ROLE : ${{ secrets.REMOTE_VECTOR_DOCKER_ROLE }}
69
- REMOTE_VECTOR_DOCKER_USERNAME : ${{ secrets.REMOTE_VECTOR_DOCKER_USERNAME }}
74
+ REMOTE_VECTOR_DOCKER_USERNAME : ${{ secrets.REMOTE_VECTOR_DOCKER_USERNAME }}
Original file line number Diff line number Diff line change @@ -25,6 +25,10 @@ RUN chown -R appuser:appuser /tmp
25
25
USER appuser
26
26
# Put conda in path so we can use conda activate
27
27
ENV PATH=$CONDA_DIR/bin:$PATH
28
+
29
+ # Accept Conda Terms of Service
30
+ ENV CONDA_PLUGINS_AUTO_ACCEPT_TOS=yes
31
+
28
32
# install some necessary dependencies
29
33
RUN conda install -c conda-forge -y -q python=3.11 cmake=3.30.4 make=4.2 swig=4.0 "numpy<2" scipy=1.14 pytest=7.4 gflags=2.2
30
34
RUN cmake --version
You can’t perform that action at this time.
0 commit comments