This commit is contained in:
@ -1,5 +1,14 @@
|
||||
# Latest official NodeJS image
|
||||
FROM node:latest-alpine AS node
|
||||
|
||||
FROM docker:latest
|
||||
|
||||
# Copy Node from the official docker image
|
||||
COPY --from=node /usr/lib /usr/lib
|
||||
COPY --from=node /usr/local/lib /usr/local/lib
|
||||
COPY --from=node /usr/local/include /usr/local/include
|
||||
COPY --from=node /usr/local/bin /usr/local/bin
|
||||
|
||||
# Install packages
|
||||
RUN apk add --no-cache curl wget git bash
|
||||
|
||||
|
Reference in New Issue
Block a user