From ca6994c9fee5f3dbeed744439eb0d294869b4594 Mon Sep 17 00:00:00 2001 From: Mike Lambert Date: Tue, 11 Oct 2016 17:29:44 -0500 Subject: [PATCH] Fix improper path --- apiserver/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apiserver/Dockerfile b/apiserver/Dockerfile index 4624e171..1f7da300 100644 --- a/apiserver/Dockerfile +++ b/apiserver/Dockerfile @@ -3,7 +3,8 @@ MAINTAINER willis8@illinois.edu COPY . /go/src/github.com/ndslabs/apiserver -COPY templates entrypoint.sh / +COPY entrypoint.sh /entrypoint.sh +COPY templates /templates RUN apt-get update -y -qq && \ apt-get install -y -qq binutils curl gcc git vim && \