Skip to content

Commit b1c886e

Browse files
Create Dockerfile
Add vetted Dockerfile.
1 parent 6b206ac commit b1c886e

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

Dockerfile

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)