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 && \