|
@@ -1,6 +1,18 @@
|
|
|
FROM node:22-bookworm
|
|
|
|
|
|
-RUN apt update -qq && apt install -qq -y wget2 aria2
|
|
|
+# 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
|
|
|
|