IF YOU WOULD LIKE TO GET AN ACCOUNT, please write an email to s dot adaszewski at gmail dot com. User accounts are meant only to report issues and/or generate pull requests. This is a purpose-specific Git hosting for ADARED projects. Thank you for your understanding!
Browse Source

Add docker/.

master
Stanislaw Adaszewski 3 years ago
parent
commit
59edeaa915
2 changed files with 36 additions and 0 deletions
  1. +33
    -0
      docker/mlflow-tracking-server/Dockerfile
  2. +3
    -0
      docker/postgresql/Dockerfile

+ 33
- 0
docker/mlflow-tracking-server/Dockerfile View File

@@ -0,0 +1,33 @@
FROM debian:latest

RUN apt-get update && \
apt-get install -y python3-pip \
python3-pandas \
python3-alembic \
python3-sqlalchemy \
python3-yaml \
python3-flask \
python3-gunicorn \
python3-protobuf \
python3-urllib3 \
python3-certifi \
python3-idna \
python3-requests \
# python3-docker \
python3-smmap \
python3-gitdb \
python3-git \
python3-sqlparse \
python3-oauthlib \
python3-requests-oauthlib \
python3-isodate \
# python3-msrest \
python3-prometheus-client \
python3-cloudpickle \
python3-tabulate && \
pip3 install mlflow

# RUN apk add --no-cache gcc gfortran libgfortran musl-dev python3 py3
#pip python3-dev py3-numpy libffi libffi-dev && \
# pip3 install mlflow && \
# apk del musl-dev python3-dev gcc gfortran py3-pip libffi-dev

+ 3
- 0
docker/postgresql/Dockerfile View File

@@ -0,0 +1,3 @@
FROM alpine:latest
RUN apk add postgresql

Loading…
Cancel
Save