File tree 1 file changed +0
-12
lines changed
1 file changed +0
-12
lines changed Original file line number Diff line number Diff line change 7
7
#
8
8
# Checks for the delphi-net bridge and creates if it doesn't exist.
9
9
#
10
- # Creates all prereq images (delphi_database, delphi_python) only if they don't
11
- # exist. If you need to rebuild a prereq, you're probably doing something
12
- # complicated, and can figure out the rebuild command on your own.
13
- #
14
10
#
15
11
# Commands:
16
12
#
97
93
@# Setup virtual network if it doesn't exist
98
94
@docker network ls | grep delphi-net || docker network create --driver bridge delphi-net
99
95
100
- @# Only build prereqs if we need them
101
- @docker images delphi_database | grep delphi || \
102
- docker build -t delphi_database -f repos/delphi/operations/dev/docker/database/Dockerfile .
103
-
104
96
@# Build the database_epidata image
105
97
@docker build -t delphi_database_epidata \
106
98
-f repos/delphi/delphi-epidata/dev/docker/database/epidata/Dockerfile .
120
112
121
113
.PHONY =py
122
114
py :
123
- @# Build the python image
124
- @docker build -t delphi_python \
125
- -f repos/delphi/operations/dev/docker/python/Dockerfile .
126
-
127
115
@docker build -t delphi_web_python \
128
116
-f repos/delphi/delphi-epidata/dev/docker/python/Dockerfile .
129
117
You can’t perform that action at this time.
0 commit comments