Dockerfile 418 B

12345678910111213
  1. FROM python:3.8
  2. # install vscode and extension
  3. RUN curl -fsSL https://code-server.dev/install.sh | sh &&\
  4. code-server --install-extension ms-python.python &&\
  5. code-server --install-extension eamodio.gitlens &&\
  6. echo done
  7. RUN apt-get update && apt-get install -y wget unzip openssh-server
  8. # 指定字符集支持命令行输入中文(根据需要选择字符集)
  9. ENV LANG C.UTF-8
  10. ENV LANGUAGE C.UTF-8