10 lines
195 B
Docker
10 lines
195 B
Docker
|
FROM dh.kuraa.cc/gcc:latest
|
||
|
|
||
|
# 安装 CMake
|
||
|
RUN apt-get update && apt-get install -y cmake libcjson-dev doxygen
|
||
|
|
||
|
# 设置工作目录
|
||
|
WORKDIR /app
|
||
|
|
||
|
# 将项目文件复制到容器中
|
||
|
COPY . /app
|