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 36affe4 commit e1f05ceCopy full SHA for e1f05ce
Dockerfile
@@ -0,0 +1,15 @@
1
+FROM tensorflow/tensorflow:2.4.1-gpu
2
+
3
+ARG DEBIAN_FRONTEND=noninteractive
4
5
+RUN apt-get update
6
+RUN apt-get install -y parallel
7
8
+RUN mkdir /app
9
+WORKDIR /app
10
+COPY ./requirements.txt /app
11
12
+RUN pip install -r requirements.txt
13
+COPY . /app
14
15
+CMD sh launch.sh
launch.sh
@@ -1 +1 @@
-parallel ::: "streamlit run main.py" "tensorboard --logdir logs/tensorboard --host 0.0.0.0 --port 6006"
+parallel -u ::: "streamlit run main.py" "tensorboard --logdir logs/tensorboard --host 0.0.0.0 --port 6006"
requirements.txt
@@ -0,0 +1,5 @@
+streamlit==0.79.0
+plotly==4.14.3
+numpy==1.19.5
+matplotlib==3.3.4
+pandas==1.1.5
0 commit comments