File tree 2 files changed +4
-3
lines changed
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 78
78
79
79
WORKDIR "serve"
80
80
81
+ RUN cp docker/dockerd-entrypoint.sh /usr/local/bin/dockerd-entrypoint.sh
82
+
81
83
RUN \
82
84
if echo "$BASE_IMAGE" | grep -q "cuda:" ; then \
83
85
# Install CUDA version specific binary when CUDA version is specified as a build arg
@@ -131,11 +133,9 @@ RUN useradd -m model-server \
131
133
&& mkdir -p /home/model-server/tmp
132
134
133
135
COPY --chown=model-server --from=compile-image /home/venv /home/venv
134
-
136
+ COPY --from=compile-image /usr/local/bin/dockerd-entrypoint.sh /usr/local/bin/dockerd-entrypoint.sh
135
137
ENV PATH="/home/venv/bin:$PATH"
136
138
137
- COPY docker/dockerd-entrypoint.sh /usr/local/bin/dockerd-entrypoint.sh
138
-
139
139
RUN chmod +x /usr/local/bin/dockerd-entrypoint.sh \
140
140
&& chown -R model-server /home/model-server
141
141
Original file line number Diff line number Diff line change 43
43
if test $
44
44
then
45
45
BRANCH_NAME=" $2 "
46
+ LOCAL_CHANGES=false
46
47
shift
47
48
else
48
49
echo " Error! branch_name not provided"
You can’t perform that action at this time.
0 commit comments