Ubuntu / Dockerfile
WuGuan's picture
Update Dockerfile
da8ad79 verified
raw
history blame contribute delete
168 Bytes
FROM ubuntu:22.04
RUN apt-get update && apt-get install -y \
ttyd \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /data
EXPOSE 7860
CMD bash -c "ttyd -p 7860 bash"