Skip to content

Instantly share code, notes, and snippets.

@shynome
Last active June 12, 2018 11:04
Show Gist options
  • Save shynome/2ee79aca60475ad11ecfff6c1606d2be to your computer and use it in GitHub Desktop.
Save shynome/2ee79aca60475ad11ecfff6c1606d2be to your computer and use it in GitHub Desktop.
Tmux sshd alpine container
FROM hermsi/alpine-sshd
EXPOSE 22
ENTRYPOINT ["/entrypoint.sh"]
RUN set -e && \
sed -i 's/dl-cdn.alpinelinux.org/mirrors.ustc.edu.cn/g' /etc/apk/repositories && \
apk add --no-cache vim tmux
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment