Last active
May 8, 2023 12:45
-
-
Save osher/a5a302ace1f823ef400a1915dbdcd5da to your computer and use it in GitHub Desktop.
A dockerfile to create a base image for building npm packages
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ARG TAG_NODE_BASE=lts | |
FROM node:$TAG_NODE_BASE | |
WORKDIR /app | |
RUN apk update --no-cache \ | |
&& apk upgrade --no-cache \ | |
&& apk add --no-cache \ | |
build-base \ | |
openssh \ | |
python3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment