mirror of
https://github.com/Neur0toxine/docker-node-alpine-git-gyp.git
synced 2024-11-24 21:36:03 +03:00
12 lines
193 B
Docker
12 lines
193 B
Docker
FROM node:dubnium-alpine
|
|
LABEL maintainer "Tim Brust <github@timbrust.de>"
|
|
|
|
ARG REFRESHED_AT
|
|
ENV REFRESHED_AT $REFRESHED_AT
|
|
|
|
RUN apk add --no-cache \
|
|
git \
|
|
openssh
|
|
|
|
RUN npm install -g yarn
|