fixed backslashes

pull/5783/head
David Garcia Quintas 9 years ago
parent b84571840a
commit f09f020a49
  1. 12
      templates/tools/dockerfile/test/sanity/Dockerfile.template
  2. 8
      tools/dockerfile/test/sanity/Dockerfile

@ -34,12 +34,12 @@
<%include file="../../apt_get_basic.include"/>
#========================
# Sanity test dependencies
RUN apt-get update && apt-get install -y \
python-pip \
autoconf \
automake \
libtool \
curl \
RUN apt-get update && apt-get install -y ${"\\"}
python-pip ${"\\"}
autoconf ${"\\"}
automake ${"\\"}
libtool ${"\\"}
curl ${"\\"}
python-virtualenv
RUN pip install simplejson mako

@ -65,7 +65,13 @@ RUN apt-get update && apt-get install -y time && apt-get clean
#========================
# Sanity test dependencies
RUN apt-get update && apt-get install -y python-pip autoconf automake libtool curl python-virtualenv
RUN apt-get update && apt-get install -y \
python-pip \
autoconf \
automake \
libtool \
curl \
python-virtualenv
RUN pip install simplejson mako
#===================

Loading…
Cancel
Save