4 lines
195 B
Docker
4 lines
195 B
Docker
# Dockerfile示例
|
|
FROM texlive/texlive:latest
|
|
RUN apt-get update && apt-get install -y git wget openssh-client netcat-openbsd bash-completion vim && apt-get clean && rm -rf /var/lib/apt/lists/*
|