From 4f5226cb7a97f86421a94fcc75c59fe6d709ae02 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 8 Feb 2021 14:16:47 +0100 Subject: Adding upstream version 1.6.3. Signed-off-by: Daniel Baumann --- Dockerfile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Dockerfile (limited to 'Dockerfile') diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..39f0376 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,16 @@ +FROM ubuntu:18.04 +RUN apt-get update && apt-get install -y autoconf automake curl cmake git libtool make \ + && git clone --depth=1 https://github.com/tsl0922/ttyd.git /ttyd \ + && cd /ttyd && env BUILD_TARGET=x86_64 WITH_SSL=true ./scripts/cross-build.sh + +FROM ubuntu:18.04 +COPY --from=0 /ttyd/build/ttyd /usr/bin/ttyd + +ADD https://github.com/krallin/tini/releases/download/v0.18.0/tini /sbin/tini +RUN chmod +x /sbin/tini + +EXPOSE 7681 +WORKDIR /root + +ENTRYPOINT ["/sbin/tini", "--"] +CMD ["ttyd", "bash"] -- cgit v1.2.3