Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
jerrrrry
easystart
Commits
ef115ee8
Commit
ef115ee8
authored
May 30, 2025
by
jerrrrry
Browse files
Delete Dockerfile
parent
dc5b212d
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
28 deletions
+0
-28
Dockerfile
Dockerfile
+0
-28
No files found.
Dockerfile
deleted
100644 → 0
View file @
dc5b212d
# 使用官方光源基础镜像
FROM
2.4.1-ubuntu22.04-dtk25.04-py3.10:vllm0.6.2
# 创建目标目录
RUN
mkdir
-p
/workspace/test/results
# 设置工作目录/workspace/test/results方便挂载结果
WORKDIR
/workspace/test/results
# 将主机上的 test.sh 复制到容器中的 /workspace/test
COPY
./run.sh /workspace/test
COPY
./benchmark_throughput_0.6.2.py /workspace/test
COPY
./topo.xml /workspace/test
COPY
./models-to-test.cfg /workspace/test
# 确保 test.sh 有可执行权限
RUN
chmod
+x /workspace/test/run.sh
# 设置容器启动时运行的命令
# 使用单个 CMD 执行所有命令
CMD
bash -c "\
rocm-bandwidth-test > rocm-bandwidth-test.txt && \
hy-smi > hy-smi.txt && \
hy-smi -c > hy-smi-c.txt && \
pip list > pip-list.txt && \
lscpu > lscpu.txt && \
bash /workspace/test/run.sh > test.log 2>&1"
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment