We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e3d172f + f9b348e commit ab4f091Copy full SHA for ab4f091
3 files changed
builder/rootfs/etc/confd/templates/builder
@@ -118,8 +118,7 @@ if [ ! -f Dockerfile ]; then
118
119
# copy out the compiled slug
120
docker cp $JOB:/tmp/slug.tgz $TMP_DIR
121
- # copy over the Dockerfile shim to the build dir
122
- cp $DOCKERFILE_SHIM ./Dockerfile
+ echo "FROM deis/slugrunner" > ./Dockerfile
123
fi
124
125
# force newline
builder/rootfs/usr/local/share/shim.dockerfile
builder/rootfs/usr/local/src/slugrunner/Dockerfile
@@ -18,3 +18,7 @@ ENV HOME /app
18
ENTRYPOINT ["/runner/init"]
19
20
ENV DEIS_RELEASE 1.10.0-dev
21
+
22
+ONBUILD RUN mkdir -p /app
23
+ONBUILD WORKDIR /app
24
+ONBUILD ADD slug.tgz /app
0 commit comments