add missing dependency mgmt tools

the docker images were missing pipenv and yarn, so adding them
This commit is contained in:
Lee Briggs 2020-06-18 10:18:28 -07:00
parent 49eb06b2f0
commit d771cdd3a1
No known key found for this signature in database
GPG key ID: A4D09B96FDFEB505
2 changed files with 5 additions and 2 deletions

View file

@ -17,7 +17,8 @@ RUN --mount=target=/var/cache/yum,type=cache \
git \
tar \
nodejs \
ca-certificates
ca-certificates && \
npm install -g yarn
# Uses the workdir, copies from pulumi interim container
COPY --from=pulumi /pulumi/bin/pulumi /pulumi/bin/pulumi

View file

@ -15,7 +15,9 @@ RUN --mount=target=/var/cache/yum,type=cache \
git \
tar \
python3 \
ca-certificates
python3-pip \
ca-certificates && \
pip3 install --user pipenv
# Uses the workdir, copies from pulumi interim container
COPY --from=pulumi /pulumi/bin/pulumi /pulumi/bin/pulumi