@@ -98,6 +98,8 @@ def load_config(): | |||
config_path = "./config-template.json" | |||
config_str = read_file(config_path) | |||
logger.info("[INIT] config str: {}".format(config_str)) | |||
# 将json字符串反序列化为dict类型 | |||
config = Config(json.loads(config_str)) | |||
@@ -35,7 +35,7 @@ ADD ./entrypoint.sh /entrypoint.sh | |||
RUN chmod +x /entrypoint.sh \ | |||
&& adduser -D -h /home/noroot -u 1000 -s /bin/bash noroot \ | |||
&& chown noroot:noroot ${BUILD_PREFIX} | |||
&& chown -R noroot:noroot ${BUILD_PREFIX} | |||
USER noroot | |||