github.com/deis/deis@v1.13.5-0.20170519182049-1d9e59fbdbfc/tests/fixtures/mock-store/Dockerfile (about) 1 FROM alpine:3.4 2 3 # install common packages 4 RUN apk add --no-cache curl bash sudo 5 6 WORKDIR /app 7 EXPOSE 8888 8 CMD ["/app/bin/boot"] 9 ADD bin/boot /app/bin/boot 10 11 ADD mock-s3-patch.diff /tmp/mock-s3-patch.diff 12 ADD build.sh /tmp/build.sh 13 RUN DOCKER_BUILD=true /tmp/build.sh