Datasets:

Modalities:
Text
ArXiv:
llmtcl / Dockerfile
Maple222's picture
Add files using upload-large-folder tool
f9dff7a verified
Raw
History Blame Contribute Delete
374 Bytes
FROM ubuntu:22.04
# 设置 UTF-8(重要,否则 python/其他程序可能乱码)
ENV LANG=C.UTF-8
ENV LC_ALL=C.UTF-8
# 安装常用工具(可选)
RUN apt-get update && apt-get install -y \
python3 python3-pip vim git wget curl \
&& apt-get clean
# 把你的整个文件夹复制进镜像
COPY . /workspace
# 设置默认工作目录
WORKDIR /workspace