This commit is contained in:
2025-09-02 19:44:26 +09:00
parent 60ef1c1ed4
commit a3c9ba9aae

View File

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