1
0
Fork 0
ttyd/Dockerfile
Daniel Baumann f66324fb7a
Merging upstream version 1.6.3+20210924.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-04-22 17:24:33 +02:00

11 lines
264 B
Docker

FROM ubuntu:20.04
ARG TARGETARCH
COPY ./dist/${TARGETARCH}/ttyd /usr/bin/ttyd
RUN apt-get update && apt-get install -y --no-install-recommends tini && rm -rf /var/lib/apt/lists/*
EXPOSE 7681
WORKDIR /root
ENTRYPOINT ["/usr/bin/tini", "--"]
CMD ["ttyd", "bash"]