summaryrefslogtreecommitdiffstats
path: root/Dockerfile-alpine
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2021-10-09 10:23:35 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2021-10-09 10:23:35 +0000
commit29fcdabc71b54182909fd9341dc002784945e1cd (patch)
tree31aae388cab95a9452acda7a987cc232a47b6707 /Dockerfile-alpine
parentAdding upstream version 1.6.3. (diff)
downloadttyd-29fcdabc71b54182909fd9341dc002784945e1cd.tar.xz
ttyd-29fcdabc71b54182909fd9341dc002784945e1cd.zip
Adding upstream version 1.6.3+20210924.upstream/1.6.3+20210924
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'Dockerfile-alpine')
-rw-r--r--Dockerfile-alpine14
1 files changed, 0 insertions, 14 deletions
diff --git a/Dockerfile-alpine b/Dockerfile-alpine
deleted file mode 100644
index 53266bb..0000000
--- a/Dockerfile-alpine
+++ /dev/null
@@ -1,14 +0,0 @@
-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 alpine:3.12
-COPY --from=0 /ttyd/build/ttyd /usr/bin/ttyd
-RUN apk add --no-cache bash tini
-
-EXPOSE 7681
-WORKDIR /root
-
-ENTRYPOINT ["/sbin/tini", "--"]
-CMD ["ttyd", "bash"]