We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65ba8e0 commit 8caa006Copy full SHA for 8caa006
opt/build/docker/dockerfile.tmpl
@@ -30,8 +30,10 @@ COPY --from=redis /usr/local/ /usr/local/
30
COPY ./opt/ opt/
31
ADD ./tests/flow/ tests/flow/
32
33
-RUN FORCE=1 ./opt/readies/bin/getpy3
34
RUN ./opt/readies/bin/getupdates
+RUN if [ ! -z $(command -v apt-get) ]; then apt-get -qq update; apt-get -q install -y git; fi
35
+RUN if [ ! -z $(command -v yum) ]; then yum install -y git; fi
36
+RUN FORCE=1 ./opt/readies/bin/getpy3
37
RUN ./opt/system-setup.py
38
39
ARG DEPS_ARGS=""
0 commit comments