Spaces:
Sleeping
Sleeping
File size: 451 Bytes
fe3c7a7 d7204be fe3c7a7 d7204be fe3c7a7 d7204be fe3c7a7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
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 ./scripts/cross-build.sh
FROM alpine
COPY --from=0 /ttyd/build/ttyd /usr/bin/ttyd
RUN apk add --no-cache bash tini
EXPOSE 7681 4040 80
WORKDIR /root
ENTRYPOINT ["/sbin/tini", "--"]
CMD ["ttyd", "--writable", "-s", "3", "bash"] |