Skip to content

Commit 04847c4

Browse files
committed
Added git to alpine image build.
1 parent 0dd5b63 commit 04847c4

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Dockerfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,10 @@ COPY . /app
55
WORKDIR /app
66
ARG DEBIAN_FRONTEND=noninteractive
77

8-
RUN npm install -g bower \
8+
RUN apk update \
9+
&& apk upgrade \
10+
&& apk add --no-cache bash git openssh \
11+
&& npm install -g bower \
912
&& npm install \
1013
&& chown -R node:node /app \
1114
&& npm rebuild node-sass \

0 commit comments

Comments
 (0)