Skip to content

Commit 25362b8

Browse files
committed
Initial commit
0 parents  commit 25362b8

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed

Dockerfile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
Werkzeug==0.14.1
2+
flask==1.0.2
3+
flask-restplus==0.12.1
4+
Flask-SQLAlchemy==2.1
5+
ipmitools==0.3
6+
Cython==0.29.6
7+
pymssql==2.1.4
8+
pywinrm==0.3.0
9+
celery==4.2.2
10+
redis==3.2.1

0 commit comments

Comments
 (0)