Skip to content

Commit

Permalink
支持清理构建的临时文件 (#17)
Browse files Browse the repository at this point in the history
* feat:调整构建脚本,删除nginx代码

* 使用rm -f防止删除失败

* feat; 无需执行清理逻辑

* feat: 修改nginx限流的问题

* feat: 重新编写readme

* feat: 支持容器镜像的构建

* feat:修复脚本权限的问题

* feat:清理编译后的临时文件
  • Loading branch information
andrewshan authored Aug 31, 2022
1 parent f0a291b commit b34b6fe
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ RUN set -ex \
&& make \
&& make package \
&& tar xf polaris_cpp_sdk.tar.gz \
&& mv polaris_cpp_sdk/* /build/third_party/polaris_client/
&& mv polaris_cpp_sdk/* /build/third_party/polaris_client/ \
&& cd .. \
&& rm -rf polaris-cpp

RUN set -ex \
&& mkdir -p /server \
Expand Down

0 comments on commit b34b6fe

Please sign in to comment.