Skip to content

Commit

Permalink
Added necessary requirements for the adapters.
Browse files Browse the repository at this point in the history
  • Loading branch information
elongl committed Mar 26, 2023
1 parent 2dbe6f5 commit 71be60c
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,17 @@ ENV DBT_TARGET_PATH=$USR_APP_PATH/target
WORKDIR $USR_APP_PATH
RUN chmod 777 .

RUN apt-get update \
&& apt-get dist-upgrade -y \
&& apt-get install -y --no-install-recommends \
python-dev \
libsasl2-dev \
&& apt-get clean \
&& rm -rf \
/var/lib/apt/lists/* \
/tmp/* \
/var/tmp/*

COPY . /app
RUN pip install --no-cache-dir "/app[all]"

Expand Down

0 comments on commit 71be60c

Please sign in to comment.