12345678910111213141516171819202122232425 |
- FROM node:22-bookworm
- # Set environment variables for non-interactive installation
- ENV DEBIAN_FRONTEND=noninteractive
- # Install tzdata package for timezone configuration
- RUN apt-get update && \
- apt-get install -y tzdata && \
- ln -fs /usr/share/zoneinfo/Europe/Moscow /etc/localtime && \
- dpkg-reconfigure --frontend noninteractive tzdata && \
- apt-get clean
- RUN apt update -qq && \
- apt install -qq -y wget2 aria2 && \
- apt clean
- ADD . /home/node/kisybi
- WORKDIR /home/node/kisybi
- RUN yarn
- VOLUME [ "/home/node/kisybi/config.json", "home/node/kisybi/tmp/done" ]
- CMD ["yarn", "server"]
|