Signed-off-by: Luan Shengde shdluan@163.com --- container/mail-robot/Dockerfile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 container/mail-robot/Dockerfile
diff --git a/container/mail-robot/Dockerfile b/container/mail-robot/Dockerfile new file mode 100644 index 0000000..76dc94d --- /dev/null +++ b/container/mail-robot/Dockerfile @@ -0,0 +1,14 @@ +# SPDX-License-Identifier: MulanPSL-2.0+ +# Copyright (c) 2020 Huawei Technologies Co., Ltd. All rights reserved. + +FROM debian + +MAINTAINER Luan Shengde shdluan@163.com + +ENV DEBIAN_FRONTEND noninteractive + +RUN apt-get update && \ + apt-get install -y git uuid-runtime curl ruby-listen ruby-json ruby-mail + +RUN echo ':sources: ["http://rubygems.org"]' >> ~/.gemrc && \ + gem install fileutils elasticsearch activesupport
On Thu, Nov 12, 2020 at 07:26:37PM +0800, Luan Shengde wrote:
Signed-off-by: Luan Shengde shdluan@163.com
container/mail-robot/Dockerfile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 container/mail-robot/Dockerfile
diff --git a/container/mail-robot/Dockerfile b/container/mail-robot/Dockerfile new file mode 100644 index 0000000..76dc94d --- /dev/null +++ b/container/mail-robot/Dockerfile @@ -0,0 +1,14 @@ +# SPDX-License-Identifier: MulanPSL-2.0+ +# Copyright (c) 2020 Huawei Technologies Co., Ltd. All rights reserved.
+FROM debian
+MAINTAINER Luan Shengde shdluan@163.com
+ENV DEBIAN_FRONTEND noninteractive
+RUN apt-get update && \
apt-get install -y git uuid-runtime curl ruby-listen ruby-json ruby-mail
Add --fix-missing when install several packages.
Thanks, Xijian
+MAINTAINER Luan Shengde shdluan@163.com
+ENV DEBIAN_FRONTEND noninteractive
+RUN apt-get update && \
apt-get install -y git uuid-runtime curl ruby-listen ruby-json ruby-mail
Add --fix-missing when install several packages.
yeah, It works both add this or not. I will add it fot next submittal
Thanks, Luan Shengde
Thanks, Xijian