pradelf commited on
Commit
0085101
·
1 Parent(s): d5df29d

Initial files

Browse files
Files changed (3) hide show
  1. Dockerfile +25 -0
  2. requirements.txt +10 -0
  3. titi +0 -0
Dockerfile ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM continuumio/miniconda3
2
+
3
+ RUN apt-get update
4
+ RUN apt-get install nano unzip curl -y
5
+
6
+ RUN curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
7
+ RUN unzip awscliv2.zip
8
+ RUN ./aws/install
9
+
10
+ RUN useradd -m -u 1000 user
11
+ USER user
12
+ ENV HOME=/home/user \
13
+ PATH=/home/user/.local/bin:$PATH
14
+
15
+ WORKDIR $HOME/app
16
+
17
+ COPY --chown=user . $HOME/app
18
+
19
+ COPY requirements.txt /requirements.txt
20
+ RUN pip install -r /requirements.txt
21
+
22
+ CMD mlflow server -p 7860 \
23
+ --host 0.0.0.0 \
24
+ --backend-store-uri $BACKEND_STORE_URI \
25
+ --default-artifact-root $ARTIFACT_STORE_URI
requirements.txt ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ boto3
2
+ pandas
3
+ gunicorn
4
+ streamlit
5
+ scikit-learn
6
+ matplotlib
7
+ seaborn
8
+ plotly
9
+ mlflow
10
+ psycopg2-binary
titi DELETED
File without changes