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.
0 parents commit 25362b8Copy full SHA for 25362b8
Dockerfile
@@ -0,0 +1,11 @@
1
+FROM alpine:3.7
2
+
3
+# Installs python 2.7 with various packages for pymssql support
4
+RUN apk add python python-dev \
5
+ py-pip ipmitool ipmitool \
6
+ freetds-dev \
7
+ g++ gcc unixodbc-dev \
8
+ libffi-dev openssl-dev
9
10
+ADD ./requirements.txt .
11
+RUN pip install -r requirements.txt
requirements.txt
@@ -0,0 +1,10 @@
+Werkzeug==0.14.1
+flask==1.0.2
+flask-restplus==0.12.1
+Flask-SQLAlchemy==2.1
+ipmitools==0.3
+Cython==0.29.6
+pymssql==2.1.4
+pywinrm==0.3.0
+celery==4.2.2
+redis==3.2.1
0 commit comments