From a4620adbcef9daba00fd28f573ec70417f5ea3f9 Mon Sep 17 00:00:00 2001 From: Jacob Beck Date: Wed, 18 Mar 2020 15:30:31 -0600 Subject: [PATCH] add spark deps --- .circleci/config.yml | 4 ++-- Dockerfile | 4 +++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 69d3dca51a2..e4098ecb77f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -2,7 +2,7 @@ version: 2 jobs: unit: docker: &test_only - - image: fishtownjacob/test-container:4 + - image: fishtownanalytics/test-container:5 environment: DBT_INVOCATION_ENV: circle steps: @@ -28,7 +28,7 @@ jobs: destination: dist integration-postgres-py36: docker: &test_and_postgres - - image: fishtownjacob/test-container:4 + - image: fishtownanalytics/test-container:5 environment: DBT_INVOCATION_ENV: circle - image: postgres diff --git a/Dockerfile b/Dockerfile index 6a1a49b6568..86fda5cb666 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,9 @@ RUN apt-get update && \ apt-get dist-upgrade -y && \ apt-get install -y --no-install-recommends \ netcat postgresql curl git ssh software-properties-common \ - make build-essential ca-certificates libpq-dev && \ + make build-essential ca-certificates libpq-dev \ + libsasl2-dev libsasl2-2 libsasl2-modules-gssapi-mit \ + && \ add-apt-repository ppa:deadsnakes/ppa && \ apt-get install -y \ python python-dev python-pip \