X-Git-Url: https://gerrit.akraino.org/r/gitweb?a=blobdiff_plain;f=example-apps%2FROBO%2Fbackup_BE%2Fdocker%2FDockerfile;fp=example-apps%2FROBO%2Fbackup_BE%2Fdocker%2FDockerfile;h=0000000000000000000000000000000000000000;hb=3ed2c61d9d7e7916481650c41bfe5604f7db22e9;hp=75d01ba49f749f3c0bb3d3f53d549b05dfc9b82a;hpb=e6d40ddb2640f434a9d7d7ed99566e5e8fa60cc1;p=ealt-edge.git diff --git a/example-apps/ROBO/backup_BE/docker/Dockerfile b/example-apps/ROBO/backup_BE/docker/Dockerfile deleted file mode 100644 index 75d01ba..0000000 --- a/example-apps/ROBO/backup_BE/docker/Dockerfile +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 2020 Huawei Technologies Co., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -# FROM swr.ap-southeast-1.myhuaweicloud.com/edgegallery/openjdk:8u201-jdk-alpine - -# currently this pod is running as root user due to this need to communicate with host shell.config -# in future this can be further checked with adding some level restrictions to user -FROM openjdk:11-jre-slim - -ENV JAVA_HOME /usr/lib/jvm/java-11-openjdk-amd64/bin/java - -ENV APP_FILE backup.jar -ENV APP_HOME /usr/app - -# Create the home directory for the new app user. -RUN mkdir -p /usr/app -RUN mkdir -p /usr/app/bin - -# Create an app user so our program doesn't run as root. -RUN apt-get update && apt-get install -y sshpass - -WORKDIR $APP_HOME - -RUN chmod 750 $APP_HOME &&\ - chmod -R 550 $APP_HOME/bin &&\ - mkdir -p -m 750 $APP_HOME/config &&\ - mkdir -p -m 750 $APP_HOME/log &&\ - mkdir -p -m 750 $APP_HOME/packages &&\ - mkdir -p -m 700 $APP_HOME/ssl &&\ - mkdir -p -m 700 $APP_HOME/.kube - -COPY /target/*.jar $APP_HOME/bin - -EXPOSE 8091 - -# Change to the app user. - -# Execute script & application -ENTRYPOINT ["sh", "-c"] -CMD ["exec java -jar ./bin/backup.jar"] \ No newline at end of file