10 lines
295 B
Text
10 lines
295 B
Text
|
FROM multiarch/ubuntu-core:armhf-focal
|
||
|
|
||
|
ARG NODE_VERSION=14
|
||
|
|
||
|
RUN apt-get update && \
|
||
|
apt-get install -y ca-certificates gnupg2 curl apt-transport-https && \
|
||
|
curl -sL https://deb.nodesource.com/setup_${NODE_VERSION}.x | bash - && \
|
||
|
apt-get install -y nodejs && \
|
||
|
npm install -g yarn pnpm
|