mirror of
http://bgp.hk.skcks.cn:10088/github.com/oneclickvirt/ecs
synced 2026-04-20 21:01:12 +08:00
15 lines
372 B
Docker
15 lines
372 B
Docker
# syntax=docker/dockerfile:1
|
|
|
|
FROM alpine:latest
|
|
|
|
# 安装必要的工具
|
|
RUN apk add --no-cache wget curl bash
|
|
|
|
# 下载并执行 goecs.sh 脚本
|
|
RUN curl -L https://raw.githubusercontent.com/oneclickvirt/ecs/master/goecs.sh -o goecs.sh && \
|
|
chmod +x goecs.sh && \
|
|
bash goecs.sh env && \
|
|
bash goecs.sh install
|
|
|
|
# 设置 goecs 为入口点
|
|
ENTRYPOINT ["goecs"] |