1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-28 09:24:24 +01:00

Include missing bash package dependency in Dockerfile

This commit is contained in:
David O' Rojo 2019-09-23 01:57:02 -05:00
parent 592624152d
commit b68af398f6

View File

@ -4,7 +4,9 @@ MAINTAINER peng@sleede.com
# Install upgrade system packages # Install upgrade system packages
RUN apk update && apk upgrade && \ RUN apk update && apk upgrade && \
# Install runtime apk dependencies # Install runtime apk dependencies
apk add --update curl \ apk add --update \
bash \
curl \
nodejs \ nodejs \
yarn \ yarn \
imagemagick \ imagemagick \
@ -19,7 +21,8 @@ RUN apk update && apk upgrade && \
libxslt-dev \ libxslt-dev \
libidn-dev && \ libidn-dev && \
# Install buildtime apk dependencies # Install buildtime apk dependencies
apk add --update --no-cache --virtual .build-deps alpine-sdk \ apk add --update --no-cache --virtual .build-deps \
alpine-sdk \
build-base \ build-base \
linux-headers \ linux-headers \
git \ git \