mirror of
https://github.com/clearml/dropbear
synced 2025-02-07 05:17:28 +00:00
16 lines
309 B
Docker
16 lines
309 B
Docker
|
FROM ubuntu:22.04
|
||
|
|
||
|
ENV LC_ALL=C.UTF-8
|
||
|
|
||
|
RUN apt-get update
|
||
|
|
||
|
RUN apt-get install -y build-essential git autoconf
|
||
|
|
||
|
RUN mkdir -p /root/dropbear/
|
||
|
WORKDIR /root/dropbear/
|
||
|
|
||
|
# ./configure --disable-zlib --disable-syslog --enable-static --disable-harden
|
||
|
# make PROGRAMS="dropbear dropbearconvert"
|
||
|
|
||
|
ENTRYPOINT ["bash"]
|