Skip to content

Commit

Permalink
Update node to 12.29.9 + install dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
David Lemaitre committed Jan 28, 2022
1 parent 382907e commit 7d36c22
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
FROM node:10.24.1-alpine3.11
FROM node:12.22.9-alpine3.15
LABEL maintainer="David Lemaitre"

ENV GULPCLI_VERSION 2.3.0

# Install requirements
RUN apk add --no-cache git
RUN apk add --no-cache libc6-compat && \
ln -s /lib/libc.musl-x86_64.so.1 /lib/ld-linux-x86-64.so.2
# Install dependencies
RUN apk add --no-cache git \
gcc \
g++ \
make \
python2

# Install gulp-cli
RUN npm install -g gulp-cli@"$GULPCLI_VERSION"
Expand Down

0 comments on commit 7d36c22

Please sign in to comment.