From 0b75ba81bdfea0c8e5d56213b05b4c453148eea9 Mon Sep 17 00:00:00 2001 From: Oliver Chang Date: Thu, 23 Mar 2017 09:57:16 -0700 Subject: [PATCH] Fix Dockerfile template (fixes #476) --- infra/templates.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infra/templates.py b/infra/templates.py index 2bce9e985..a67111c1b 100755 --- a/infra/templates.py +++ b/infra/templates.py @@ -41,7 +41,7 @@ MAINTAINER your@email.com RUN apt-get install -y make autoconf automake libtool RUN git clone --depth 1 %(project_name)s # or use other version control WORKDIR %(project_name)s -COPY build.sh $src/ +COPY build.sh $SRC/ """ BUILD_TEMPLATE = """\