You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
FROM harbor.oa00.com/library/alpine
|
|
# 拷贝编译结果到当前镜像中
|
|
COPY ./bin/server /www/wwwroot/recook_v2
|
|
# 拷贝配置文件
|
|
COPY ./credentials /www/wwwroot/credentials
|
|
COPY ./qr_resource /www/wwwroot/qr_resource
|
|
WORKDIR /www/wwwroot
|
|
ENTRYPOINT ["/www/wwwroot/recook_v2"] |