From a3c9ba9aae196ed2a0e076c0f308f72496f6f238 Mon Sep 17 00:00:00 2001 From: chiDT Date: Tue, 2 Sep 2025 19:44:26 +0900 Subject: [PATCH] .. --- Dockerfile | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 57a14e2..9d102e6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -28,11 +28,7 @@ RUN apt-get install -y dbus-x11 x11-xserver-utils xfce4 xfce4-goodies xorgxrdp x RUN apt-get install -y build-essential cmake git libjson-c-dev libwebsockets-dev --fix-missing \ && apt-get clean && rm -rf /var/lib/apt/lists/* -RUN git clone https://github.com/tsl0922/ttyd.git -RUN cd ttyd && mkdir build && cd build -RUN cmake .. -RUN make && sudo make install -RUN cd ~ +RUN cp /usr/share/applications/org.fcitx.Fcitx5.desktop ~/.config/autostart/ # Node.js와 npm을 NodeSource에서 설치 (더 안정적) RUN curl -fsSL https://deb.nodesource.com/setup_20.x | bash - && \ @@ -79,6 +75,7 @@ RUN echo "TZ=Asia/Seoul" >> /etc/environment && \ echo "LANG=ko_KR.UTF-8" >> /etc/environment && \ echo "LANGUAGE=ko_KR:ko" >> /etc/environment && \ echo "LC_ALL=ko_KR.UTF-8" >> /etc/environment && \ + echo "INPUT_METHOD=fcitx" >> /etc/environment && \ echo "GTK_IM_MODULE=fcitx" >> /etc/environment && \ echo "QT_IM_MODULE=fcitx" >> /etc/environment && \ echo "QT4_IM_MODULE=fcitx" >> /etc/environment && \