We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b206ac commit b1c886eCopy full SHA for b1c886e
Dockerfile
@@ -0,0 +1,19 @@
1
+
2
+FROM tensorflow/tensorflow:2.19.0
3
4
+RUN apt update -y
5
+RUN apt upgrade -y
6
+RUN apt install git -y
7
8
+WORKDIR /app
9
10
+RUN git clone https://github.com/david-thrower/cerebros-core-algorithm-alpha.git
11
12
+WORKDIR /app/cerebros-core-algorithm-alpha
13
14
+RUN git checkout 247-2025-09-27--new-hpo-study-with-sampling-plus-penalties
15
16
+RUN pip3 install --ignore-installed -r requirements.txt
17
+RUN pip3 install --ignore-installed -r cicd-requirements.txt
18
19
+ENTRYPOINT ["python3", "generative-proof-of-concept-CPU-preprocessing-in-memory.py" ]
0 commit comments