编辑文件 Dockerfile

This commit is contained in:
dockermen 2025-04-11 11:17:57 +08:00 committed by cnb
parent e59d43989f
commit 47839acb75

View File

@ -5,7 +5,7 @@ FROM python:3.13.3-slim
ENV DEBIAN_FRONTEND=noninteractive ENV DEBIAN_FRONTEND=noninteractive
# 安装 ssh 服务,用于支持 VSCode 客户端通过 Remote-SSH 访问开发环境 # 安装 ssh 服务,用于支持 VSCode 客户端通过 Remote-SSH 访问开发环境
RUN apt-get update && apt-get install -y wget unzip openssh-server curl RUN apt-get update && apt-get install -y wget unzip openssh-server curl git
RUN pip install uv RUN pip install uv
# 安装 code-server 和扩展(使用 id 安装 python 扩展,使用 vsix 安装包安装 pylance 扩展) # 安装 code-server 和扩展(使用 id 安装 python 扩展,使用 vsix 安装包安装 pylance 扩展)