Dockerfile
FROM ubuntu:20.04
RUN apt-get update
RUN apt-get -y install curl gnupg libfontconfig git
RUN curl -sL https://deb.nodesource.com/setup_16.x | bash -
RUN apt-get -y install nodejs
RUN npm install -g yarn
RUN npm install -g npm@latest
ENV TZ=America/Sao_Paulo
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
WORKDIR /app
CMD [ "node" ]
Content type
Image
Digest
sha256:1753c8cee…
Size
143.6 MB
Last updated
about 4 years ago
docker pull decussi/node-16