所以我试图在docker容器中执行构建聚合物项目作为卷(访问它我正在使用docker run (...) --volume="/var/www/html:/var/www/html" --volumes-from="my-polymer-image-name" my-nginx-image
)。
我尝试执行以下Dockerfile,但最后声明了该卷,但当我尝试从“my-nginx-container”(docker exec -ti my-nginx-image-name /bin/sh
)访问它时,该卷为空。
所以我认为在使用它之前我必须声明音量。
但是当我尝试安装我的bower组件时,我注意到没有创建bower_components
目录。
########################################################
# Dockerfile to build Polymer project and move to server
# Based on oficial node Dockerfile
########################################################
FROM node:6
VOLUME /var/www/html
# Install polymer and bower
RUN npm install -g \
polymer-cli \
bower
# Add project to a temp folder to build it
RUN mkdir -p /var/www/html/temp
COPY . /var/www/html/temp
WORKDIR /var/www/html/temp
RUN ls -la
RUN bower install --allow-root # here is where I try to build my project
RUN polymer build
# Move to release folder
WORKDIR /var/www/html
RUN mv /var/www/html/temp/build/unbundled/* /var/www/html
RUN bower install --allow-root
# Remove temporary content
RUN rm -rf /var/www/html/temp
答案 0 :(得分:1)
完成docker映像构建时的卷装入。
在Docker文件的最后一行添加
ENTRYPOINT ["/bin/bash", "/etc/entrypoint.sh"]
使用像这样的熵点脚本。
#!/bin/bash
set -e #if error bash script will exit and stop docker image
cd /var/www/html/
bower install --allow-root
polymer build
mv /var/www/html/temp/build/unbundled/* /var/www/html
rm -rf /var/www/html/temp