From 6c99f3b1a704e72cf31c11fe07d9316fa40ed13b Mon Sep 17 00:00:00 2001 From: Dan Schaper Date: Sun, 24 Dec 2017 19:52:16 -0800 Subject: [PATCH] Install Alpine run time dependencies in to container. --- .circleci/config.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 63ba1e0..0cc6a25 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -4,10 +4,10 @@ jobs: docker: - image: djschaper/circleci:1.0-alpine3.7 steps: - - checkout - run: - name: Greeting - command: echo Hello, world. - - run: - name: Print the Current Time - command: date + name: Install Run Dependencies + command: | + apk add --no-cache --virtual .run-deps \ + curl \ + drill \ + openssl