From 4a4af5f9839fa8f20eff39e9849c4a9521b31743 Mon Sep 17 00:00:00 2001 From: Anthony Neto Date: Wed, 13 Feb 2019 14:45:40 -0800 Subject: [PATCH] adding bash to final container so examples work --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 903afa9d1..9dd18b977 100644 --- a/Dockerfile +++ b/Dockerfile @@ -37,7 +37,9 @@ RUN rsync -av $(find /tmp/orchestrator-release -type d -name orchestrator -maxde RUN rsync -av $(find /tmp/orchestrator-release -type d -name orchestrator-cli -maxdepth 2)/ / RUN cp /usr/local/orchestrator/orchestrator-sample-sqlite.conf.json /etc/orchestrator.conf.json -FROM alpine:3.6 +FROM alpine:3.8 + +RUN apk add --no-cache bash EXPOSE 3000