浏览代码

Move scripts under base

Girish Ramakrishnan 10 年之前
父节点
当前提交
529233133b
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      Dockerfile

+ 2 - 2
Dockerfile

@@ -9,7 +9,7 @@ RUN mkdir -p /app/code && cd /app/code \
     && rm latest.tar.gz \
     && chown -R www-data.www-data /app/code
 
-ADD scripts/ /app/scripts/
+ADD scripts/ /app/base/scripts/
 
 ADD wp-config.php /app/configs/wp-config.php
 
@@ -18,4 +18,4 @@ RUN ln -s /app/data/wp-config.php /app/code/wp-config.php
 
 EXPOSE 80
 
-CMD [ "/app/scripts/start.sh", "--lamp" ]
+CMD [ "/app/base/scripts/start.sh", "--lamp" ]