Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Adding the Docker workflow for v1 #66

Merged
merged 26 commits into from
Jul 13, 2023
Merged
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
da9c3e9
added docker workflow
sarthakpati Jul 12, 2023
e48e2ef
added paths and updating $PATH AND $LD_LIBRARY_PATH
sarthakpati Jul 12, 2023
01663f8
added cython installation
sarthakpati Jul 12, 2023
1c781d9
Merge branch 'master' into docker_for_v1
sarthakpati Jul 12, 2023
5e0b9a9
trying to save space
sarthakpati Jul 12, 2023
924cfca
Update docker-image.yml
sarthakpati Jul 12, 2023
ebf492e
trying codeql next
sarthakpati Jul 12, 2023
5f34b40
Update docker-image.yml
sarthakpati Jul 12, 2023
c9ab2d5
updated reserve
sarthakpati Jul 12, 2023
9223019
trying another action
sarthakpati Jul 12, 2023
2e982e8
manual deletion of android and .net
sarthakpati Jul 12, 2023
b4f315a
Update docker-image.yml
sarthakpati Jul 12, 2023
824c753
gdcm was not working
sarthakpati Jul 12, 2023
da32f7b
updating setuptools
sarthakpati Jul 13, 2023
3a81e73
Update Dockerfile
sarthakpati Jul 13, 2023
f5f6e99
ensure same base env for both
sarthakpati Jul 13, 2023
d61c082
trying install for `scikit-learn`
sarthakpati Jul 13, 2023
82495a7
installing specific version of grpcio and updated entry path
sarthakpati Jul 13, 2023
84627ec
updated hash
sarthakpati Jul 13, 2023
44977bb
Merge branch 'docker_for_v1' of https://github.com/FETS-AI/Front-End …
sarthakpati Jul 13, 2023
7a90712
syntax fix
sarthakpati Jul 13, 2023
2992e4c
checking path
sarthakpati Jul 13, 2023
5d4df9e
checking path
sarthakpati Jul 13, 2023
73deb1b
fixed path
sarthakpati Jul 13, 2023
b8d49a2
ensure that libGL is found
sarthakpati Jul 13, 2023
7948858
trying sklearn deprecated flag
sarthakpati Jul 13, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
installing specific version of grpcio and updated entry path
sarthakpati authored Jul 13, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 82495a75033125b59285826b103141eb2569337c
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -33,7 +33,7 @@ RUN cd ./FeTS_${VERSION}/squashfs-root/usr/bin/OpenFederatedLearning && \
./venv/bin/pip install wheel && \
./venv/bin/pip install scikit-build scikit-learn && \
./venv/bin/pip install SimpleITK==1.2.4 && \
./venv/bin/pip install protobuf==3.17.3 && \
./venv/bin/pip install protobuf==3.17.3 grpcio==1.30.0 && \
./venv/bin/pip install opencv-python==4.2.0.34
# ./venv/bin/pip install python-gdcm

@@ -51,5 +51,6 @@ RUN cd ./FeTS_${VERSION}/squashfs-root/usr/bin/OpenFederatedLearning && \
ENV QT_X11_NO_MITSHM=1
ENV QT_GRAPHICSSYSTEM="native"

RUN ls -l ./FeTS_${VERSION}/squashfs-root/usr/bin
# define entry point
ENTRYPOINT ["/FeTS_\${VERSION}/bin/install/appdir/usr/bin/FeTS_CLI_Inference"]
ENTRYPOINT ["./FeTS_\${VERSION}/squashfs-root/usr/bin/FeTS_CLI_Inference"]