Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
gobstoppers/node/Dockerfile
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
45 lines (42 sloc)
2.35 KB
This file contains 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
FROM kafebob/rpi-alpine:3.6 | |
ENV VERSION=v8.9.0 NPM_VERSION=5.5.1 YARN_VERSION=1.3.2 | |
# For base builds | |
ENV CONFIG_FLAGS="--without-snapshot --fully-static" DEL_PKGS="libgcc libstdc++" RM_DIRS=/usr/include | |
RUN apk add --no-cache curl make gcc g++ python linux-headers binutils-gold gnupg libgcc libstdc++ && \ | |
gpg --keyserver ipv4.pool.sks-keyservers.net --recv-keys \ | |
94AE36675C464D64BAFA68DD7434390BDBE9B9C5 \ | |
FD3A5288F042B6850C66B31F09FE44734EB7990E \ | |
71DCFD284A79C3B38668286BC97EC7A07EDE3FC1 \ | |
DD8F2338BAE7501E3DD5AC78C273792F7D83545D \ | |
C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8 \ | |
B9AE9905FFD7803F25714661B63B535A4C206CA9 \ | |
56730D5401028683275BD23C23EFEFE93C4CFFFE && \ | |
curl -sSLO https://nodejs.org/dist/${VERSION}/node-${VERSION}.tar.xz && \ | |
curl -sSL https://nodejs.org/dist/${VERSION}/SHASUMS256.txt.asc | gpg --batch --decrypt | \ | |
grep " node-${VERSION}.tar.xz\$" | sha256sum -c | grep . && \ | |
tar -xf node-${VERSION}.tar.xz && \ | |
cd node-${VERSION} && \ | |
./configure --prefix=/usr ${CONFIG_FLAGS} && \ | |
make -j$(getconf _NPROCESSORS_ONLN) && \ | |
make install && \ | |
cd / && \ | |
#if [ -z "$CONFIG_FLAGS" ]; then \ | |
npm install -g npm@${NPM_VERSION} && \ | |
find /usr/lib/node_modules/npm -name test -o -name .bin -type d | xargs rm -rf && \ | |
if [ -n "$YARN_VERSION" ]; then \ | |
gpg --keyserver ipv4.pool.sks-keyservers.net --recv-keys \ | |
6A010C5166006599AA17F08146C2130DFD2497F5 && \ | |
curl -sSL -O https://yarnpkg.com/downloads/$YARN_VERSION/yarn-v$YARN_VERSION.tar.gz -O https://yarnpkg.com/downloads/$YARN_VERSION/yarn-v$YARN_VERSION.tar.gz.asc && \ | |
gpg --batch --verify yarn-v${YARN_VERSION}.tar.gz.asc yarn-v${YARN_VERSION}.tar.gz && \ | |
mkdir /usr/local/share/yarn && \ | |
tar -xf yarn-v${YARN_VERSION}.tar.gz -C /usr/local/share/yarn --strip 1 && \ | |
ln -s /usr/local/share/yarn/bin/yarn /usr/local/bin/ && \ | |
ln -s /usr/local/share/yarn/bin/yarnpkg /usr/local/bin/ && \ | |
rm -rf yarn-v${YARN_VERSION}.tar.gz*; \ | |
fi && \ | |
#fi && \ | |
apk del curl make gcc g++ python linux-headers binutils-gold gnupg ${DEL_PKGS} && \ | |
rm -rf ${RM_DIRS} /node-${VERSION}* /usr/share/man /tmp/* /var/cache/apk/* \ | |
/root/.npm /root/.node-gyp /usr/lib/node_modules/npm/man \ | |
/usr/lib/node_modules/npm/doc /usr/lib/node_modules/npm/html /usr/lib/node_modules/npm/scripts && \ | |
rm -rf /root/.gnupg || true |