mirror of
https://github.com/Toumash/mlflow-docker
synced 2025-11-04 23:29:19 +01:00
11 lines
164 B
Docker
11 lines
164 B
Docker
FROM continuumio/miniconda3:latest
|
|
|
|
ADD . /app
|
|
WORKDIR /app
|
|
|
|
COPY wait-for-it.sh wait-for-it.sh
|
|
RUN chmod +x wait-for-it.sh
|
|
|
|
RUN pip install mlflow boto3 pymysql
|
|
|