Skip to content

Commit b595e7e

Browse files
committed
add makefile and flask
1 parent 7886207 commit b595e7e

File tree

6 files changed

+223
-141
lines changed

6 files changed

+223
-141
lines changed

.python-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.6.9

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"python.pythonPath": "/Users/apple/.local/share/virtualenvs/train_TFRecords-flKaUsXb/bin/python"
3+
}

Makefile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
IMAGE_NAME=train_tfrecords:master
2+
3+
build ::
4+
echo ${IMAGE_NAME}
5+
docker build -f ./Dockerfile -t ${IMAGE_NAME} .
6+
docker push ${IMAGE_NAME}
7+

Pipfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ v = {editable = true,version = "*"}
1313
tensorflow = "==1.12.2"
1414
nni = "==0.9.1.1"
1515
configargparse = "==0.14.0"
16+
flask = "*"
1617

1718
[requires]
1819
python_version = "3.6"

0 commit comments

Comments
 (0)