您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

12 行
175 B

  1. FROM alpine:3.3
  2. MAINTAINER Roman Tarnavski
  3. RUN apk add --update nginx
  4. COPY nginx.conf /etc/nginx/
  5. ADD ./dist/ /usr/share/nginx/html
  6. EXPOSE 8080
  7. CMD nginx -g 'daemon off;'