-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #20 from eipm/develop
v1.0.2
- Loading branch information
Showing
7 changed files
with
41 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
FROM python:3.6.8-stretch | ||
FROM python:3.7.9-buster | ||
#===============================# | ||
# Docker Image Configuration # | ||
# Docker Image Configuration # | ||
#===============================# | ||
LABEL org.opencontainers.image.source='https://github.com/eipm/cnn-smoothie' \ | ||
vendor='Englander Institute for Precision Medicine' \ | ||
description='CNN Smoothie' \ | ||
maintainer='[email protected]' \ | ||
base_image='python' \ | ||
base_image_version='3.6.8-stretch' | ||
base_image_version='3.7.9-buster' | ||
|
||
ENV APP_NAME='cnn_smoothie' \ | ||
TZ='US/Eastern' \ | ||
|
@@ -18,17 +18,17 @@ ENV RESULT_DIR=${CNN_SMOOTHIE}/result \ | |
PYTHONPATH=${PYTHONPATH}:${CNN_SMOOTHIE}:${PREDICT_DIR} | ||
|
||
#===================================# | ||
# Install Prerequisites # | ||
# Install Prerequisites # | ||
#===================================# | ||
COPY requirements.txt /${APP_NAME}/requirements.txt | ||
RUN pip install -r /${APP_NAME}/requirements.txt | ||
#===================================# | ||
# Copy Files and set work directory # | ||
# Copy Files and set work directory # | ||
#===================================# | ||
COPY src /${APP_NAME}/src/ | ||
WORKDIR /${APP_NAME} | ||
#===================================# | ||
# Startup # | ||
# Startup # | ||
#===================================# | ||
EXPOSE 80 | ||
VOLUME uploads | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,37 @@ | ||
absl-py==0.7.0 | ||
astor==0.7.1 | ||
cachetools==2.1.0 | ||
certifi==2018.10.15 | ||
absl-py==0.10.0 | ||
astor==0.8.1 | ||
cachetools==4.1.1 | ||
certifi==2020.6.20 | ||
chardet==3.0.4 | ||
Click==7.0 | ||
Click==7.1.2 | ||
CouchDB==1.2 | ||
Flask==1.0.2 | ||
Flask-Cors==3.0.7 | ||
Flask==1.1.2 | ||
Flask-Cors==3.0.9 | ||
Flask-Uploads==0.2.1 | ||
gast==0.2.2 | ||
grpcio==1.15.0 | ||
h5py==2.9.0 | ||
idna==2.7 | ||
grpcio==1.32.0 | ||
h5py==2.10.0 | ||
idna==2.10 | ||
itsdangerous==1.1.0 | ||
Jinja2==2.10 | ||
Keras-Applications==1.0.6 | ||
Jinja2==2.11.3 | ||
Keras-Applications==1.0.8 | ||
Keras-Preprocessing==1.0.5 | ||
Markdown==3.0.1 | ||
MarkupSafe==1.1.0 | ||
numpy==1.15.2 | ||
protobuf==3.6.1 | ||
Markdown==3.2.2 | ||
MarkupSafe==1.1.1 | ||
numpy==1.18.5 | ||
protobuf==3.13.0 | ||
pyasn1==0.4.4 | ||
pyasn1-modules==0.2.2 | ||
pytz==2018.5 | ||
requests==2.20.0 | ||
rsa==4.0 | ||
selenium==3.14.1 | ||
six==1.12.0 | ||
tensorboard==1.12.2 | ||
tensorflow==1.12.0 | ||
requests==2.27.1 | ||
rsa==4.7 | ||
selenium==3.141.0 | ||
six==1.15.0 | ||
tensorboard==1.15.0 | ||
tensorflow==1.15.4 | ||
termcolor==1.1.0 | ||
urllib3==1.24 | ||
urllib3==1.26.5 | ||
virtualenv==16.2.0 | ||
Werkzeug==0.14.1 | ||
opencv-python==4.0.0.21 | ||
matplotlib==3.0.3 | ||
Werkzeug==1.0.1 | ||
opencv-python==4.2.0.32 | ||
matplotlib==3.3.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
version = '1.0.1' | ||
version = '1.0.2' | ||
|
||
|
||
def api_version(): | ||
return version |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters