Skip to content

Commit 5ce9e45

Browse files
committed
update dockerfile
1 parent 43b3fd2 commit 5ce9e45

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

Docker/Dockerfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ RUN yum install -y wget
2323
RUN yum install -y screen
2424
RUN yum install -y crontabs
2525
RUN yum install -y zlib-devel
26+
RUN yum install -y sqlite-devel
2627
RUN yum install -y openssl-devel
2728

2829
# install nginx
@@ -37,11 +38,11 @@ RUN service crond restart
3738

3839
# download python3
3940
WORKDIR /root/
40-
RUN wget https://www.python.org/ftp/python/3.6.1/Python-3.6.1.tar.xz
41-
RUN tar -xf Python-3.6.1.tar.xz
41+
RUN wget https://www.python.org/ftp/python/3.5.4/Python-3.5.4.tar.xz
42+
RUN tar -xf Python-3.5.4.tar.xz
4243

4344
# install python3
44-
WORKDIR /root/Python-3.6.1
45+
WORKDIR /root/Python-3.5.4
4546
RUN ./configure
4647
RUN make install
4748
RUN make clean

Docker/requirements.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,5 @@ Flask-Bootstrap
2323
Flask-SQLAlchemy
2424
gunicorn
2525
uWSGI
26+
jupyter
27+
tensorflow

0 commit comments

Comments
 (0)