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

17 行
278 B

  1. FROM alpine:3.4
  2. MAINTAINER fehguy
  3. RUN apk add --update nginx
  4. RUN mkdir -p /run/nginx
  5. COPY nginx.conf /etc/nginx/
  6. # copy swagger files to the `/js` folder
  7. ADD ./public/* /usr/share/nginx/html/
  8. ADD ./dist/* /usr/share/nginx/html/
  9. EXPOSE 8080
  10. CMD exec nginx -g 'daemon off;'