File size: 240 Bytes
0022230 df51516 0022230 df51516 0022230 df51516 0022230 df51516 |
1 2 3 4 5 6 7 8 9 10 11 12 |
# Use an official Golang base image
FROM golang:alpine
# Install WebTTY
RUN apk add --no-cache git && \
go install github.com/tsl0922/ttyd@latest
# Expose port 7681 for WebTTY
EXPOSE 7681
# Start WebTTY with bash
CMD ["ttyd", "bash"] |