This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# curl -fsSL https://gist.github.com/qujihan/ba1644a1e2ff0de9bf7a48b7b7c5d445/raw/dockerfile-22.04 | docker build -t dev-image:22 - | |
FROM ubuntu:22.04 | |
ENV DEBIAN_FRONTEND=noninteractive \ | |
TZ=Asia/Shanghai \ | |
TERM=tmux-256color | |
RUN apt update && \ | |
apt install -y --no-install-recommends \ |