Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add git to the alpine image #367

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions 4.8/alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ ENV NODE_VERSION 4.8.1

RUN adduser -D -u 1000 node \
&& apk add --no-cache \
git \
libstdc++ \
&& apk add --no-cache --virtual .build-deps \
binutils-gold \
Expand Down
1 change: 1 addition & 0 deletions 6.10/alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ ENV NODE_VERSION 6.10.1

RUN adduser -D -u 1000 node \
&& apk add --no-cache \
git \
libstdc++ \
&& apk add --no-cache --virtual .build-deps \
binutils-gold \
Expand Down
1 change: 1 addition & 0 deletions 7.7/alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ ENV NODE_VERSION 7.7.4

RUN adduser -D -u 1000 node \
&& apk add --no-cache \
git \
libstdc++ \
&& apk add --no-cache --virtual .build-deps \
binutils-gold \
Expand Down
1 change: 1 addition & 0 deletions Dockerfile-alpine.template
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ ENV NODE_VERSION 0.0.0

RUN adduser -D -u 1000 node \
&& apk add --no-cache \
git \
libstdc++ \
&& apk add --no-cache --virtual .build-deps \
binutils-gold \
Expand Down