From 3b4936b6f2b870f9f2444ebb6ce1ca2de3f49d9f Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 19 Apr 2024 04:54:31 +0200 Subject: Adding upstream version 1.7.4. Signed-off-by: Daniel Baumann --- Dockerfile.alpine | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Dockerfile.alpine (limited to 'Dockerfile.alpine') diff --git a/Dockerfile.alpine b/Dockerfile.alpine new file mode 100644 index 0000000..141d56f --- /dev/null +++ b/Dockerfile.alpine @@ -0,0 +1,15 @@ +FROM alpine + +ARG TARGETARCH + +# Dependencies +RUN apk add --no-cache bash tini + +# Application +COPY ./dist/${TARGETARCH}/ttyd /usr/bin/ttyd + +EXPOSE 7681 +WORKDIR /root + +ENTRYPOINT ["/sbin/tini", "--"] +CMD ["ttyd", "-W", "bash"] -- cgit v1.2.3