Skip to content

Commit

Permalink
forgot these
Browse files Browse the repository at this point in the history
  • Loading branch information
Amateur-God committed Jun 28, 2024
1 parent 201af0f commit 15b72b3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions addons/adb_server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ RUN apt-get update && \
rm -rf /var/lib/apt/lists/*

# Download and build TTYD
RUN sudo apt-get update
RUN sudo apt-get update && \\
sudo apt-get install -y build-essential cmake git libjson-c-dev libwebsockets-dev
git clone https://github.com/tsl0922/ttyd.git
cd ttyd && mkdir build && cd build
cmake ..
make && sudo make install
RUN git clone https://github.com/tsl0922/ttyd.git
RUN cd ttyd && mkdir build && cd build
RUN cmake ..
RUN make && sudo make install

COPY run.sh /run.sh
COPY restricted-shell.sh /usr/local/bin/restricted-shell.sh
Expand Down

0 comments on commit 15b72b3

Please sign in to comment.