上传文件至 /

docker build -t gcc-cmake .
main
kura 2024-09-14 09:24:08 +01:00
commit 9f4ba9ceea
1 changed files with 10 additions and 0 deletions

10
Dockerfile Normal file
View File

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