1
0
Fork 0
ttyd/Dockerfile.alpine
Daniel Baumann aeb425b9a8
Merging upstream version 1.7.7.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-04-22 17:27:21 +02:00

15 lines
224 B
Text

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"]