Updated node-buster with America/Sao_Paulo timezone
273
FROM node:XX-buster
# Update
RUN apt-get update
RUN apt-get -y install curl gnupg libfontconfig git
# set America/Sao_Paulo timezone
ENV TZ=America/Sao_Paulo
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
# update npm
RUN npm install -g npm@latest
# build config
ENV NODE_OPTIONS=--max_old_space_size=8192
WORKDIR /app
CMD [ "node" ]
Content type
Image
Digest
sha256:b6d5a2073…
Size
354.1 MB
Last updated
about 2 years ago
docker pull decussi/node-br:20